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