summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coercion/unsafe-coercion.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coercion/unsafe-coercion.rs')
-rw-r--r--src/test/ui/coercion/unsafe-coercion.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/coercion/unsafe-coercion.rs b/src/test/ui/coercion/unsafe-coercion.rs
deleted file mode 100644
index 2478deeab..000000000
--- a/src/test/ui/coercion/unsafe-coercion.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// run-pass
-// Check that safe fns are not a subtype of unsafe fns.
-
-
-fn foo(x: i32) -> i32 {
- x * 22
-}
-
-fn bar(x: fn(i32) -> i32) -> unsafe fn(i32) -> i32 {
- x // OK, coercion!
-}
-
-fn main() {
- let f = bar(foo);
- let x = unsafe { f(2) };
- assert_eq!(x, 44);
-}