12 lines
181 B
Rust
12 lines
181 B
Rust
// rustfmt-reorder_extern_crates: false
|
|
|
|
extern crate foo;
|
|
extern crate bar;
|
|
extern crate foobar;
|
|
|
|
#[macro_use]
|
|
extern crate nom;
|
|
extern crate regex;
|
|
#[macro_use]
|
|
extern crate log;
|