summary refs log tree commit diff
path: root/src/test/ui-fulldeps/multiple-plugins.rs
blob: 25d2c8bc1235bc0b94e187adcb3547557bb0d78a (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
// aux-build:multiple-plugins-1.rs
// aux-build:multiple-plugins-2.rs

// 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() {}