]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/expr-empty-ret.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / expr-empty-ret.rs
index 99ce1fac7b7448cd5d2e3a2ee4c5aa27722dc7de..7b08251967e329aef037bf8fb16dd2432ed73389 100644 (file)
@@ -1,5 +1,20 @@
+// 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.
+
 // Issue #521
 
-fn f() { let x = alt true { true { 10 } false { ret } }; }
+fn f() {
+    let _x = match true {
+        true => { 10i }
+        false => { return }
+    };
+}
 
-fn main() { }
\ No newline at end of file
+pub fn main() { }