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