• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
main()12 fn main() {}
13