]> git.lizzy.rs Git - rust.git/blob - tests/ui/editions/edition-extern-crate-allowed.rs
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / editions / edition-extern-crate-allowed.rs
1 // aux-build:edition-extern-crate-allowed.rs
2 // edition:2015
3 // check-pass
4
5 #![warn(rust_2018_idioms)]
6
7 extern crate edition_extern_crate_allowed;
8 //~^ WARNING unused extern crate
9
10 fn main() {}