rust/tests/ui/proc-macro/edition-imports-2018.rs

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

25 lines
341 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
// edition:2018
// aux-build:edition-imports-2015.rs
#[macro_use]
extern crate edition_imports_2015;
mod import {
pub struct Path;
}
mod absolute {
pub struct Path;
}
mod check {
#[derive(Derive2015)] // OK
struct S;
fn check() {
Path;
}
}
fn main() {}