rust/src/test/ui/multiple-plugin-registrars.rs

13 lines
233 B
Rust
Raw Normal View History

// error-pattern: multiple plugin registration functions found
2013-12-25 12:10:33 -06:00
#![feature(plugin_registrar)]
2013-12-25 12:10:33 -06:00
// the registration function isn't typechecked yet
#[plugin_registrar]
2013-12-25 12:10:33 -06:00
pub fn one() {}
#[plugin_registrar]
2013-12-25 12:10:33 -06:00
pub fn two() {}
fn main() {}