]> git.lizzy.rs Git - rust.git/blob - src/test/ui/multiple-plugin-registrars.stderr
Rollup merge of #84328 - Folyd:stablize_map_into_keys_values, r=m-ou-se
[rust.git] / src / test / ui / multiple-plugin-registrars.stderr
1 warning: use of deprecated attribute `plugin_registrar`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
2   --> $DIR/multiple-plugin-registrars.rs:6:1
3    |
4 LL | #[plugin_registrar]
5    | ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
6    |
7    = note: `#[warn(deprecated)]` on by default
8
9 warning: use of deprecated attribute `plugin_registrar`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
10   --> $DIR/multiple-plugin-registrars.rs:9:1
11    |
12 LL | #[plugin_registrar]
13    | ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
14
15 error: multiple plugin registration functions found
16    |
17 note: one is here
18   --> $DIR/multiple-plugin-registrars.rs:7:1
19    |
20 LL | pub fn one() {}
21    | ^^^^^^^^^^^^^^^
22 note: one is here
23   --> $DIR/multiple-plugin-registrars.rs:10:1
24    |
25 LL | pub fn two() {}
26    | ^^^^^^^^^^^^^^^
27
28 error: aborting due to previous error; 2 warnings emitted
29