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
|
|
|
|
2019-06-08 09:35:54 -05:00
|
|
|
#![feature(custom_inner_attributes)]
|
2013-11-11 02:51:27 -06:00
|
|
|
|
2019-06-08 09:35:54 -05:00
|
|
|
#![mutable_doc] //~ ERROR attribute `mutable_doc` is currently unknown
|
2013-11-25 09:22:40 -06:00
|
|
|
|
2019-06-08 09:35:54 -05:00
|
|
|
#[dance] mod a {} //~ ERROR attribute `dance` is currently unknown
|
2013-11-11 02:51:27 -06:00
|
|
|
|
2019-06-08 09:35:54 -05:00
|
|
|
#[dance] fn main() {} //~ ERROR attribute `dance` is currently unknown
|