]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/derive-still-gated.rs
Rollup merge of #106978 - mejrs:mir_build3, r=davidtwco
[rust.git] / tests / 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() {}