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

17 lines
476 B
Plaintext
Raw Normal View History

2019-10-03 02:33:28 -05:00
warning: use of deprecated attribute `plugin`: compiler plugins are deprecated. See https://github.com/rust-lang/rust/issues/29597
--> $DIR/lint-plugin.rs:5:1
|
LL | #![plugin(lint_plugin_test)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute
|
= 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