blob: 4776740d8de9087e58e3af488837a11ba7a5c803 [file] [log] [blame]
// gate-test-custom_inner_attributes
#![feature(register_attr)]
#![register_attr(foo)]
#[foo]
mod foo {
#![foo] //~ ERROR non-builtin inner attributes are unstable
}
fn main() {}