summary refs log tree commit diff
path: root/src/test/ui/span/issue-36530.rs
blob: 14b2c8644e0b40f2caa9fc05695220cba02b16e1 (plain)
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() {}