2018-10-29 21:21:39 +00:00
|
|
|
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`
|
2020-01-08 17:02:10 +00:00
|
|
|
//~| ERROR cannot determine resolution for the derive macro `NonExistent`
|
|
|
|
//~| ERROR cannot determine resolution for the derive macro `NonExistent`
|
2018-10-29 21:21:39 +00:00
|
|
|
struct S;
|
|
|
|
|
|
|
|
fn main() {}
|