]> git.proxmox.com Git - rustc.git/blame - src/test/ui/multiple-plugin-registrars.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / multiple-plugin-registrars.stderr
CommitLineData
e74abb32
XL
1warning: 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 |
4LL | #[plugin_registrar]
5 | ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
6 |
7 = note: `#[warn(deprecated)]` on by default
8
9warning: 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 |
12LL | #[plugin_registrar]
13 | ^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
14
b7449926
XL
15error: multiple plugin registration functions found
16 |
17note: one is here
0731742a 18 --> $DIR/multiple-plugin-registrars.rs:7:1
b7449926
XL
19 |
20LL | pub fn one() {}
21 | ^^^^^^^^^^^^^^^
22note: one is here
0731742a 23 --> $DIR/multiple-plugin-registrars.rs:10:1
b7449926
XL
24 |
25LL | pub fn two() {}
26 | ^^^^^^^^^^^^^^^
27
ba9703b0 28error: aborting due to previous error; 2 warnings emitted
b7449926 29