]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/wildcard_enum_match_arm.stderr
iterate List by value
[rust.git] / tests / ui / wildcard_enum_match_arm.stderr
index e6f0411095cabaffc3c5449fdd7182d7549b92c2..7151a5c5770bf3ad217c8eca4088df24cee6ecf6 100644 (file)
@@ -4,7 +4,7 @@ error: wildcard match will miss any future added variants
 LL |         _ => eprintln!("Not red"),
    |         ^ help: try this: `Color::Green | Color::Blue | Color::Rgb(..) | Color::Cyan`
    |
-note: lint level defined here
+note: the lint level is defined here
   --> $DIR/wildcard_enum_match_arm.rs:3:9
    |
 LL | #![deny(clippy::wildcard_enum_match_arm)]