]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-55457.rs
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / imports / issue-55457.rs
1 use NonExistent; //~ ERROR unresolved import `NonExistent`
2 use non_existent::non_existent; //~ ERROR unresolved import `non_existent`
3
4 #[non_existent] //~ ERROR cannot determine resolution for the attribute macro `non_existent`
5 #[derive(NonExistent)] //~ ERROR cannot determine resolution for the derive macro `NonExistent`
6                        //~| ERROR cannot determine resolution for the derive macro `NonExistent`
7                        //~| ERROR cannot determine resolution for the derive macro `NonExistent`
8 struct S;
9
10 fn main() {}