rust/tests/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.stderr

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

28 lines
911 B
Plaintext
Raw Normal View History

error: implementing `LintPass` by hand
2020-01-08 15:54:08 -06:00
--> $DIR/lint_pass_impl_without_macro.rs:20:6
|
LL | impl LintPass for Foo {
| ^^^^^^^^
|
= help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
--> $DIR/lint_pass_impl_without_macro.rs:4:9
|
2019-06-24 03:43:51 -05:00
LL | #![deny(rustc::lint_pass_impl_without_macro)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: implementing `LintPass` by hand
2020-01-08 15:54:08 -06:00
--> $DIR/lint_pass_impl_without_macro.rs:30:14
|
LL | impl LintPass for Custom {
| ^^^^^^^^
...
LL | custom_lint_pass_macro!();
2021-10-14 13:28:28 -05:00
| ------------------------- in this macro invocation
|
= help: try using `declare_lint_pass!` or `impl_lint_pass!` instead
= note: this error originates in the macro `custom_lint_pass_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 2 previous errors