1 #![feature(plugin)]
2 #![plugin(foo="bleh")] //~ ERROR malformed `plugin` attribute
3 //~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
4 
main()5 fn main() {}
6