mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 16:45:37 +00:00
12 lines
162 B
Rust
12 lines
162 B
Rust
|
// rustfmt-edition: 2018
|
||
|
|
||
|
use ::ignore;
|
||
|
use ::ignore::some::more;
|
||
|
use ::{foo, bar};
|
||
|
use ::*;
|
||
|
use ::baz::{foo, bar};
|
||
|
|
||
|
fn main() {
|
||
|
println!("Hello, world!");
|
||
|
}
|