]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/lint_without_lint_pass.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / lint_without_lint_pass.stderr
index 9d0b0d62789874b0a5175e89949c7675a3816508..1257dae96d71cc17c0261ff5f66efcea3575c165 100644 (file)
@@ -1,20 +1,21 @@
 error: the lint `TEST_LINT` is not added to any `LintPass`
   --> $DIR/lint_without_lint_pass.rs:11:1
    |
-LL | / declare_clippy_lint! {
-LL | |     pub TEST_LINT,
-LL | |     correctness,
-LL | |     ""
+LL | / declare_tool_lint! {
+LL | |     pub clippy::TEST_LINT,
+LL | |     Warn,
+LL | |     "",
+LL | |     report_in_external_macro: true
 LL | | }
    | |_^
    |
-note: lint level defined here
+note: the lint level is defined here
   --> $DIR/lint_without_lint_pass.rs:1:9
    |
 LL | #![deny(clippy::internal)]
    |         ^^^^^^^^^^^^^^^^
-   = note: #[deny(clippy::lint_without_lint_pass)] implied by #[deny(clippy::internal)]
-   = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
+   = note: `#[deny(clippy::lint_without_lint_pass)]` implied by `#[deny(clippy::internal)]`
+   = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
 
 error: aborting due to previous error