30 lines
970 B
Plaintext
30 lines
970 B
Plaintext
warning: use of deprecated attribute `plugin_registrar`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
|
|
--> $DIR/multiple-plugin-registrars.rs:6:1
|
|
|
|
|
LL | #[plugin_registrar]
|
|
| ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
|
|
|
|
|
= note: `#[warn(deprecated)]` on by default
|
|
|
|
warning: use of deprecated attribute `plugin_registrar`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
|
|
--> $DIR/multiple-plugin-registrars.rs:9:1
|
|
|
|
|
LL | #[plugin_registrar]
|
|
| ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
|
|
|
|
error: multiple plugin registration functions found
|
|
|
|
|
note: one is here
|
|
--> $DIR/multiple-plugin-registrars.rs:7:1
|
|
|
|
|
LL | pub fn one() {}
|
|
| ^^^^^^^^^^^^^^^
|
|
note: one is here
|
|
--> $DIR/multiple-plugin-registrars.rs:10:1
|
|
|
|
|
LL | pub fn two() {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error; 2 warnings emitted
|
|
|