]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/enum-discr.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / enum-discr.rs
index 5a14f0050e86602345fdb304f79778802ddc8692..97997bec2616a085a74ae65baf669704179e53cc 100644 (file)
@@ -1,8 +1,18 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 enum Animal {
-    Cat = 0u,
-    Dog = 1u,
-    Horse = 2u,
-    Snake = 3u
+    Cat = 0,
+    Dog = 1,
+    Horse = 2,
+    Snake = 3,
 }
 
 enum Hero {
@@ -12,9 +22,9 @@ enum Hero {
     Spiderman = -4
 }
 
-fn main() {
-    let pet: Animal = Snake;
-    let hero: Hero = Superman;
+pub fn main() {
+    let pet: Animal = Animal::Snake;
+    let hero: Hero = Hero::Superman;
     assert!(pet as uint == 3);
     assert!(hero as int == -2);
 }