summaryrefslogtreecommitdiff
path: root/tests/expectations/enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expectations/enum.rs')
-rw-r--r--tests/expectations/enum.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/expectations/enum.rs b/tests/expectations/enum.rs
index f6f510dd..8138d697 100644
--- a/tests/expectations/enum.rs
+++ b/tests/expectations/enum.rs
@@ -5,8 +5,8 @@
#[repr(u32)]
-#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
-pub enum Enum_Foo { Bar = 0, Qux = 1, }
+#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
+pub enum Foo { Bar = 0, Qux = 1, }
#[repr(i32)]
-#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
-pub enum Enum_Neg { MinusOne = -1, One = 1, }
+#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
+pub enum Neg { MinusOne = -1, One = 1, }