]> git.lizzy.rs Git - rust.git/commitdiff
test: Add tests for closed issue #10764
authorAlex Crichton <alex@alexcrichton.com>
Mon, 2 Jun 2014 08:03:30 +0000 (01:03 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Mon, 2 Jun 2014 16:24:03 +0000 (09:24 -0700)
Closes #10764

src/test/compile-fail/issue-10764.rs [new file with mode: 0644]
src/test/run-pass/issue-10764.rs [new file with mode: 0644]

diff --git a/src/test/compile-fail/issue-10764.rs b/src/test/compile-fail/issue-10764.rs
new file mode 100644 (file)
index 0000000..dfb3895
--- /dev/null
@@ -0,0 +1,15 @@
+// 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.
+
+fn f(_: extern "Rust" fn()) {}
+extern fn bar() {}
+
+fn main() { f(bar) }
+//~^ ERROR: expected `fn()` but found `extern "C" fn()`
diff --git a/src/test/run-pass/issue-10764.rs b/src/test/run-pass/issue-10764.rs
new file mode 100644 (file)
index 0000000..f824b5f
--- /dev/null
@@ -0,0 +1,11 @@
+// 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.
+
+extern "Rust" fn main() {}