]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-36530.rs
Merge commit '40dd3e2b7089b5e96714e064b731f6dbf17c61a9' into sync_cg_clif-2021-05-27
[rust.git] / src / test / ui / span / issue-36530.rs
1 // gate-test-custom_inner_attributes
2
3 #![feature(register_attr)]
4
5 #![register_attr(foo)]
6
7 #[foo]
8 mod foo {
9     #![foo] //~ ERROR custom inner attributes are unstable
10 }
11
12 fn main() {}