]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/issue-55457.rs
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / 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() {}