]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/multiple-plugins.rs
Ban subnormals and NaNs in const {from,to}_bits
[rust.git] / src / test / ui-fulldeps / multiple-plugins.rs
1 // run-pass
2 // aux-build:multiple-plugins-1.rs
3 // aux-build:multiple-plugins-2.rs
4
5 // Check that the plugin registrar of multiple plugins doesn't conflict
6
7 #![feature(plugin)]
8 #![plugin(multiple_plugins_1)] //~ WARN use of deprecated attribute `plugin`
9 #![plugin(multiple_plugins_2)] //~ WARN use of deprecated attribute `plugin`
10
11 fn main() {}