2019-09-08 01:34:24 +00:00
|
|
|
// Unknown attributes fall back to unstable custom attributes.
|
2013-11-11 08:51:27 +00:00
|
|
|
|
2019-06-08 14:35:54 +00:00
|
|
|
#![feature(custom_inner_attributes)]
|
2013-11-11 08:51:27 +00:00
|
|
|
|
2019-07-11 22:00:20 +00:00
|
|
|
#![mutable_doc]
|
2019-09-15 09:55:18 +00:00
|
|
|
//~^ ERROR cannot find attribute `mutable_doc` in this scope
|
2013-11-25 15:22:40 +00:00
|
|
|
|
2019-07-11 22:00:20 +00:00
|
|
|
#[dance] mod a {}
|
2019-09-15 09:55:18 +00:00
|
|
|
//~^ ERROR cannot find attribute `dance` in this scope
|
2013-11-11 08:51:27 +00:00
|
|
|
|
2019-07-11 22:00:20 +00:00
|
|
|
#[dance] fn main() {}
|
2019-09-15 09:55:18 +00:00
|
|
|
//~^ ERROR cannot find attribute `dance` in this scope
|