2013-11-11 02:51:27 -06:00
|
|
|
// When denying at the crate level, be sure to not get random warnings from the
|
|
|
|
// injected intrinsics by the compiler.
|
|
|
|
|
2015-02-14 04:45:43 -06:00
|
|
|
#![feature(custom_attribute)]
|
2014-10-27 17:37:07 -05:00
|
|
|
#![deny(unused_attributes)]
|
2013-11-11 02:51:27 -06:00
|
|
|
|
2014-06-08 01:46:32 -05:00
|
|
|
#![mutable_doc] //~ ERROR unused attribute
|
2013-11-25 09:22:40 -06:00
|
|
|
|
2014-06-08 01:46:32 -05:00
|
|
|
#[dance] mod a {} //~ ERROR unused attribute
|
2013-11-11 02:51:27 -06:00
|
|
|
|
2014-06-08 01:46:32 -05:00
|
|
|
#[dance] fn main() {} //~ ERROR unused attribute
|