2019-09-22 01:32:51 +02:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2015-08-29 00:23:32 +02:00
|
|
|
#![deny(unused_attributes)]
|
|
|
|
#![feature(plugin)]
|
|
|
|
|
|
|
|
#[plugin(bla)] //~ ERROR unused attribute
|
|
|
|
//~^ ERROR should be an inner attribute
|
2019-09-22 01:32:51 +02:00
|
|
|
//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated and will be removed in 1.44.0
|
2015-08-29 00:23:32 +02:00
|
|
|
|
|
|
|
fn main() {}
|