]> git.proxmox.com Git - rustc.git/blob - src/test/ui/feature-gates/feature-gate-plugin.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-plugin.stderr
1 error[E0658]: compiler plugins are deprecated
2 --> $DIR/feature-gate-plugin.rs:3:1
3 |
4 LL | #![plugin(foo)]
5 | ^^^^^^^^^^^^^^^
6 |
7 = note: for more information, see https://github.com/rust-lang/rust/issues/29597
8 = help: add `#![feature(plugin)]` to the crate attributes to enable
9
10 warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
11 --> $DIR/feature-gate-plugin.rs:3:1
12 |
13 LL | #![plugin(foo)]
14 | ^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
15 |
16 = note: `#[warn(deprecated)]` on by default
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0658`.