rust/tests/ui/feature-gates/issue-43106-gating-of-derive-2.rs

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

21 lines
584 B
Rust
Raw Normal View History

// This test checks cases where the derive-macro does not exist.
mod derive {
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
2020-01-08 17:02:10 +00:00
//~| ERROR cannot find derive macro `x3300` in this scope
union U { f: i32 }
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
2020-01-08 17:02:10 +00:00
//~| ERROR cannot find derive macro `x3300` in this scope
enum E { }
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
2020-01-08 17:02:10 +00:00
//~| ERROR cannot find derive macro `x3300` in this scope
struct S;
}
fn main() {}