mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
12 lines
183 B
Rust
12 lines
183 B
Rust
//@ edition:2018
|
|
//@ aux-build:edition-imports-2015.rs
|
|
|
|
#[macro_use]
|
|
extern crate edition_imports_2015;
|
|
|
|
mod check {
|
|
gen_gated!(); //~ ERROR unresolved import `E`
|
|
}
|
|
|
|
fn main() {}
|