blob: 8904ec0448adab52de62e374787d71a6d86df487 (
plain)
1
2
3
4
5
6
7
|
// Test that `#![plugin(...)]` attribute is gated by `plugin` feature gate
#![plugin(foo)]
//~^ ERROR compiler plugins are deprecated
//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
fn main() {}
|