mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
584 B
Rust
21 lines
584 B
Rust
// This test checks cases where the derive-macro does not exist.
|
|
|
|
mod derive {
|
|
#[derive(x3300)]
|
|
//~^ ERROR cannot find derive macro `x3300` in this scope
|
|
//~| ERROR cannot find derive macro `x3300` in this scope
|
|
union U { f: i32 }
|
|
|
|
#[derive(x3300)]
|
|
//~^ ERROR cannot find derive macro `x3300` in this scope
|
|
//~| ERROR cannot find derive macro `x3300` in this scope
|
|
enum E { }
|
|
|
|
#[derive(x3300)]
|
|
//~^ ERROR cannot find derive macro `x3300` in this scope
|
|
//~| ERROR cannot find derive macro `x3300` in this scope
|
|
struct S;
|
|
}
|
|
|
|
fn main() {}
|