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