]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/unsafe-fn-called-from-unsafe-fn.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / unsafe-fn-called-from-unsafe-fn.rs
index e19bee45cfc103a6fb49eff70e97fc198f7b2506..e68b868a246940e0222c84da8200db98e6589d96 100644 (file)
@@ -1,10 +1,22 @@
-// -*- rust -*-
+// 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.
+
 //
 // See also: compile-fail/unsafe-fn-called-from-safe.rs
 
-unsafe fn f() { ret; }
+unsafe fn f() { return; }
 
 unsafe fn g() {
     f();
 }
 
+pub fn main() {
+    return;
+}