blob: 0e357f89d14a679acddcca5d4e9a9aa145c17af1 [file] [log] [blame]
// 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() {}