]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/enum_variants.rs
iterate List by value
[rust.git] / tests / ui / enum_variants.rs
index f3bbd3d96260eb537284d939569c790e2ea62b01..01774a2a9845cf26c0a6c70c131e8fed7e71bb1d 100644 (file)
@@ -1,5 +1,5 @@
 #![feature(non_ascii_idents)]
-#![warn(clippy::all, clippy::pub_enum_variant_names)]
+#![warn(clippy::enum_variant_names, clippy::pub_enum_variant_names)]
 #![allow(non_camel_case_types)]
 
 enum FakeCallType {
@@ -120,4 +120,17 @@ enum N {
     Float,
 }
 
+// should not lint
+enum Peek {
+    Peek1,
+    Peek2,
+    Peek3,
+}
+
+// should not lint
+pub enum NetworkLayer {
+    Layer2,
+    Layer3,
+}
+
 fn main() {}