]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-36530.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / span / issue-36530.rs
1 // gate-test-custom_inner_attributes
2
3 #![feature(custom_attribute)]
4
5 #[foo]
6 mod foo {
7     #![foo] //~ ERROR non-builtin inner attributes are unstable
8 }
9
10 fn main() {}