rust/tests/ui/editions/edition-imports-virtual-2015-gated.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
181 B
Rust
Raw Normal View History

// 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() {}