blob: e11be9e17f20de30acda43f1f865b4149f6a968b (
plain)
1
2
3
4
5
6
7
8
9
|
// gate-test-custom_inner_attributes
#[foo] //~ ERROR is currently unknown to the compiler
mod foo {
#![foo] //~ ERROR is currently unknown to the compiler
//~| ERROR non-builtin inner attributes are unstable
}
fn main() {}
|