summary refs log tree commit diff
path: root/src/test/ui/multiple-plugin-registrars.stderr
blob: dffc73a21e418896079872e3c96a866a7ec314b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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