about summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-plugin.rs
blob: 977a5556899ba0b79d96b335fa064282178dccc0 (plain)
1
2
3
4
5
6
// Test that `#![plugin(...)]` attribute is gated by `plugin` feature gate

#![plugin(foo)]
//~^ ERROR compiler plugins are experimental and possibly buggy

fn main() {}