]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unneeded_wildcard_pattern.stderr
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / unneeded_wildcard_pattern.stderr
index 25251cf36c0f2336a8f11cd905ddf3cd19da1304..716d9ecff89af617464eb6c57d5ca7b1546eec26 100644 (file)
@@ -4,7 +4,7 @@ error: this pattern is unneeded as the `..` pattern can match that element
 LL |     if let (0, .., _) = t {};
    |                  ^^^ help: remove it
    |
-note: lint level defined here
+note: the lint level is defined here
   --> $DIR/unneeded_wildcard_pattern.rs:3:9
    |
 LL | #![deny(clippy::unneeded_wildcard_pattern)]