rust/tests/ui/malformed/malformed-plugin-3.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
617 B
Plaintext
Raw Normal View History

error[E0498]: malformed `plugin` attribute
--> $DIR/malformed-plugin-3.rs:2:11
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #![plugin(foo="bleh")]
| ^^^^^^^^^^ malformed attribute
2018-08-08 07:28:26 -05:00
warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
--> $DIR/malformed-plugin-3.rs:2:1
|
LL | #![plugin(foo="bleh")]
| ^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
|
= note: `#[warn(deprecated)]` on by default
error: aborting due to previous error; 1 warning emitted
2018-08-08 07:28:26 -05:00
2021-07-27 12:06:34 -05:00
For more information about this error, try `rustc --explain E0498`.