about summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-plugin.rs
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() {}