]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/drop-on-ret.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / drop-on-ret.rs
index 16722714bc36db6d5411e719e36688a216193b2e..0786974e112071b9dbde077a3fe536a2ca15fd35 100644 (file)
@@ -1,7 +1,22 @@
+// 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.
 
 
 
-// -*- rust -*-
-fn f() -> int { if true { let s: ~str = ~"should not leak"; ret 1; } ret 0; }
 
-fn main() { f(); }
+fn f() -> int {
+    if true {
+        let _s: String = "should not leak".to_string();
+        return 1;
+    }
+    return 0;
+}
+
+pub fn main() { f(); }