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
|
|
|
|
2019-06-08 17:35:54 +03:00
|
|
|
#![feature(custom_inner_attributes)]
|
2013-11-11 17:51:27 +09:00
|
|
|
|
2019-07-12 01:00:20 +03:00
|
|
|
#![mutable_doc]
|
|
|
|
//~^ ERROR cannot find attribute macro `mutable_doc` in this scope
|
2013-11-26 00:22:40 +09:00
|
|
|
|
2019-07-12 01:00:20 +03:00
|
|
|
#[dance] mod a {}
|
|
|
|
//~^ ERROR cannot find attribute macro `dance` in this scope
|
2013-11-11 17:51:27 +09:00
|
|
|
|
2019-07-12 01:00:20 +03:00
|
|
|
#[dance] fn main() {}
|
|
|
|
//~^ ERROR cannot find attribute macro `dance` in this scope
|