]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/derive-still-gated.rs
resolve: Tweak "cannot find" wording for attributes
[rust.git] / src / test / ui / proc-macro / derive-still-gated.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use]
4 extern crate test_macros;
5
6 #[derive_Empty] //~ ERROR cannot find attribute `derive_Empty` in this scope
7 struct A;
8
9 fn main() {}