2019-09-07 20:34:24 -05:00
|
|
|
// Unknown attributes fall back to unstable 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-07-11 17:00:20 -05:00
|
|
|
#![mutable_doc]
|
2019-09-15 04:55:18 -05:00
|
|
|
//~^ ERROR cannot find attribute `mutable_doc` in this scope
|
2013-11-25 09:22:40 -06:00
|
|
|
|
2019-07-11 17:00:20 -05:00
|
|
|
#[dance] mod a {}
|
2019-09-15 04:55:18 -05:00
|
|
|
//~^ ERROR cannot find attribute `dance` in this scope
|
2013-11-11 02:51:27 -06:00
|
|
|
|
2019-07-11 17:00:20 -05:00
|
|
|
#[dance] fn main() {}
|
2019-09-15 04:55:18 -05:00
|
|
|
//~^ ERROR cannot find attribute `dance` in this scope
|