2015-08-29 00:23:32 +02:00
|
|
|
#![deny(unused_attributes)]
|
|
|
|
|
#![feature(plugin)]
|
|
|
|
|
|
2021-07-29 12:00:41 -05:00
|
|
|
#[plugin(bla)] //~ ERROR should be an inner attribute
|
2019-10-03 06:46:17 +02:00
|
|
|
//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
|
2015-08-29 00:23:32 +02:00
|
|
|
|
|
|
|
|
fn main() {}
|