]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/multiple-plugins.rs
make more readable
[rust.git] / tests / ui-fulldeps / multiple-plugins.rs
1 // run-pass
2 // aux-build:multiple-plugins-1.rs
3 // aux-build:multiple-plugins-2.rs
4 // ignore-stage1
5
6 // Check that the plugin registrar of multiple plugins doesn't conflict
7
8 #![feature(plugin)]
9 #![plugin(multiple_plugins_1)] //~ WARN use of deprecated attribute `plugin`
10 #![plugin(multiple_plugins_2)] //~ WARN use of deprecated attribute `plugin`
11
12 fn main() {}