blob: 70e04bf7ee6e81216918bf504e5925ef0596fb1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// gate-test-custom_inner_attributes
#![feature(register_attr)]
#![register_attr(foo)]
#[foo]
mod foo {
#![foo] //~ ERROR custom inner attributes are unstable
}
fn main() {}
|