about summary refs log tree commit diff
path: root/tests/ui/structs-enums/enum-discr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/structs-enums/enum-discr.rs')
-rw-r--r--tests/ui/structs-enums/enum-discr.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/structs-enums/enum-discr.rs b/tests/ui/structs-enums/enum-discr.rs
new file mode 100644
index 00000000000..bdd6df82d0f
--- /dev/null
+++ b/tests/ui/structs-enums/enum-discr.rs
@@ -0,0 +1,23 @@
+// run-pass
+#![allow(dead_code)]
+
+enum Animal {
+    Cat = 0,
+    Dog = 1,
+    Horse = 2,
+    Snake = 3,
+}
+
+enum Hero {
+    Batman = -1,
+    Superman = -2,
+    Ironman = -3,
+    Spiderman = -4
+}
+
+pub fn main() {
+    let pet: Animal = Animal::Snake;
+    let hero: Hero = Hero::Superman;
+    assert_eq!(pet as usize, 3);
+    assert_eq!(hero as isize, -2);
+}