]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-helper-legacy-spurious.rs
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / ui / proc-macro / derive-helper-legacy-spurious.rs
1 // aux-build:test-macros.rs
2
3 #![dummy] //~ ERROR cannot find attribute `dummy` in this scope
4
5 #[macro_use]
6 extern crate test_macros;
7
8 #[derive(Empty)] //~ ERROR cannot determine resolution for the attribute macro `derive`
9 #[empty_helper] //~ ERROR cannot find attribute `empty_helper` in this scope
10 struct Foo {}
11
12 fn main() {}