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

9 lines
245 B
Rust

// Test that `#[plugin_registrar]` attribute is gated by `plugin_registrar`
// feature gate.
// the registration function isn't typechecked yet
#[plugin_registrar]
pub fn registrar() {}
//~^ ERROR compiler plugins are experimental
fn main() {}