1
Fork 0
rust/src/test/ui/attributes/unknown-attr.rs

13 lines
354 B
Rust
Raw Normal View History

2019-06-08 23:55:09 +03:00
// Unknown attributes fall back to feature gated custom attributes.
2013-11-11 17:51:27 +09:00
#![feature(custom_inner_attributes)]
2013-11-11 17:51:27 +09:00
#![mutable_doc]
//~^ ERROR cannot find attribute macro `mutable_doc` in this scope
2013-11-26 00:22:40 +09:00
#[dance] mod a {}
//~^ ERROR cannot find attribute macro `dance` in this scope
2013-11-11 17:51:27 +09:00
#[dance] fn main() {}
//~^ ERROR cannot find attribute macro `dance` in this scope