rust/src/test/ui/feature-gates/feature-gate-plugin.rs
2018-12-25 21:08:33 -07:00

6 lines
170 B
Rust

// Test that `#![plugin(...)]` attribute is gated by `plugin` feature gate
#![plugin(foo)]
//~^ ERROR compiler plugins are experimental and possibly buggy
fn main() {}