2021-05-14 08:37:53 -05:00
|
|
|
// run-pass
|
|
|
|
// aux-build:multiple-plugins-1.rs
|
|
|
|
// aux-build:multiple-plugins-2.rs
|
2022-07-15 16:30:57 -05:00
|
|
|
// ignore-stage1
|
2021-05-14 08:37:53 -05:00
|
|
|
|
|
|
|
// Check that the plugin registrar of multiple plugins doesn't conflict
|
|
|
|
|
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(multiple_plugins_1)] //~ WARN use of deprecated attribute `plugin`
|
|
|
|
#![plugin(multiple_plugins_2)] //~ WARN use of deprecated attribute `plugin`
|
|
|
|
|
|
|
|
fn main() {}
|