mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
542 B
Rust
11 lines
542 B
Rust
use NonExistent; //~ ERROR unresolved import `NonExistent`
|
|
use non_existent::non_existent; //~ ERROR unresolved import `non_existent`
|
|
|
|
#[non_existent] //~ ERROR cannot determine resolution for the attribute macro `non_existent`
|
|
#[derive(NonExistent)] //~ ERROR cannot determine resolution for the derive macro `NonExistent`
|
|
//~| ERROR cannot determine resolution for the derive macro `NonExistent`
|
|
//~| ERROR cannot determine resolution for the derive macro `NonExistent`
|
|
struct S;
|
|
|
|
fn main() {}
|