1
Fork 0
rust/src/test/ui/invalid/invalid-plugin-attr.rs

11 lines
299 B
Rust
Raw Normal View History

// ignore-tidy-linelength
#![deny(unused_attributes)]
#![feature(plugin)]
#[plugin(bla)] //~ ERROR unused attribute
//~^ ERROR should be an inner attribute
//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated and will be removed in 1.44.0
fn main() {}