blob: 5f276f6b65ebcf23792086ef54320faef1800f4f [file] [log] [blame]
// This test checks cases where the derive-macro does not exist.
mod derive {
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
union U { f: i32 }
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
enum E { }
#[derive(x3300)]
//~^ ERROR cannot find derive macro `x3300` in this scope
struct S;
}
fn main() {}