about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-02 01:03:30 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-02 09:24:03 -0700
commit60e0f6fbb06d8a1c848cd8793edafa42ba4e1940 (patch)
tree9f61d612779bffd9d659b615e07962ed5784bc64 /src
parent1527dab9980bf1f94419dcb8482ff1f0228a6f4b (diff)
downloadrust-60e0f6fbb06d8a1c848cd8793edafa42ba4e1940.tar.gz
rust-60e0f6fbb06d8a1c848cd8793edafa42ba4e1940.zip
test: Add tests for closed issue #10764
Closes #10764
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/issue-10764.rs15
-rw-r--r--src/test/run-pass/issue-10764.rs11
2 files changed, 26 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-10764.rs b/src/test/compile-fail/issue-10764.rs
new file mode 100644
index 00000000000..dfb38953ab3
--- /dev/null
+++ b/src/test/compile-fail/issue-10764.rs
@@ -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
index 00000000000..f824b5fd4dc
--- /dev/null
+++ b/src/test/run-pass/issue-10764.rs
@@ -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() {}