11 lines
194 B
Rust
11 lines
194 B
Rust
// aux-build:edition-extern-crate-allowed.rs
|
|
// edition:2015
|
|
// check-pass
|
|
|
|
#![warn(rust_2018_idioms)]
|
|
|
|
extern crate edition_extern_crate_allowed;
|
|
//~^ WARNING unused extern crate
|
|
|
|
fn main() {}
|