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