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!");
|
||
|
}
|