From 60e0f6fbb06d8a1c848cd8793edafa42ba4e1940 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 2 Jun 2014 01:03:30 -0700 Subject: [PATCH] test: Add tests for closed issue #10764 Closes #10764 --- src/test/compile-fail/issue-10764.rs | 15 +++++++++++++++ src/test/run-pass/issue-10764.rs | 11 +++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/test/compile-fail/issue-10764.rs create mode 100644 src/test/run-pass/issue-10764.rs 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 or the MIT license +// , 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +extern "Rust" fn main() {} -- 2.44.0