mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +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!");
|
|
}
|