summary refs log tree commit diff
path: root/src/test/ui/invalid/invalid-plugin-attr.rs
blob: 3ba7389d5db69491d7d082681c59079199fa2b89 (plain)
1
2
3
4
5
6
7
8
#![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

fn main() {}