mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
361 B
Rust
13 lines
361 B
Rust
// run-pass
|
|
// aux-build:multiple-plugins-1.rs
|
|
// aux-build:multiple-plugins-2.rs
|
|
// ignore-stage1
|
|
|
|
// 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() {}
|