rust/src/test/ui/attributes/unknown-attr.rs

10 lines
318 B
Rust
Raw Normal View History

2019-06-08 15:55:09 -05:00
// Unknown attributes fall back to feature gated custom attributes.
2013-11-11 02:51:27 -06:00
#![feature(custom_inner_attributes)]
2013-11-11 02:51:27 -06:00
#![mutable_doc] //~ ERROR attribute `mutable_doc` is currently unknown
2013-11-25 09:22:40 -06:00
#[dance] mod a {} //~ ERROR attribute `dance` is currently unknown
2013-11-11 02:51:27 -06:00
#[dance] fn main() {} //~ ERROR attribute `dance` is currently unknown