1 2 3 4 5 6 7 8 9 10
// gate-test-custom_inner_attributes #![feature(custom_attribute)] #[foo] mod foo { #![foo] //~ ERROR non-builtin inner attributes are unstable } fn main() {}