]> git.lizzy.rs Git - rust.git/blob - tests/ui-fulldeps/feature-gate-plugin.stderr
Rollup merge of #107596 - Kobzol:stage-build-timer, r=Mark-Simulacrum
[rust.git] / tests / ui-fulldeps / feature-gate-plugin.stderr
1 error[E0658]: compiler plugins are deprecated
2   --> $DIR/feature-gate-plugin.rs:4:1
3    |
4 LL | #![plugin(empty_plugin)]
5    | ^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #29597 <https://github.com/rust-lang/rust/issues/29597> for more information
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:4:1
12    |
13 LL | #![plugin(empty_plugin)]
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; 1 warning emitted
19
20 For more information about this error, try `rustc --explain E0658`.