summary refs log tree commit diff
path: root/src/test/ui/span/issue-36530.rs
blob: 4776740d8de9087e58e3af488837a11ba7a5c803 (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 non-builtin inner attributes are unstable
}

fn main() {}