rust/src/test/ui-fulldeps/lint-plugin.stderr

17 lines
496 B
Plaintext
Raw Normal View History

warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/pull/64675
2019-10-03 02:33:28 -05:00
--> $DIR/lint-plugin.rs:5:1
|
LL | #![plugin(lint_plugin_test)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: may be removed in a future compiler version
2019-10-03 02:33:28 -05:00
|
= note: `#[warn(deprecated)]` on by default
warning: item is named 'lintme'
2018-12-25 09:56:47 -06:00
--> $DIR/lint-plugin.rs:8:1
|
2019-03-09 06:03:44 -06:00
LL | fn lintme() { }
| ^^^^^^^^^^^^^^^
|
= note: `#[warn(test_lint)]` on by default