]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/unit-like-struct.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / unit-like-struct.rs
index e5eb50a8afd163e2d36c41ae71d0ad6299904bbd..849b5810c5f14da7fe015c45fc3aa1f1f1ebd1e3 100644 (file)
@@ -1,9 +1,18 @@
+// Copyright 2012 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.
+
 struct Foo;
 
-fn main() {
+pub fn main() {
     let x: Foo = Foo;
     match x {
-        Foo => { io::println("hi"); }
+        Foo => { println!("hi"); }
     }
 }
-