summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsafe/unsafe-subtyping.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unsafe/unsafe-subtyping.stderr')
-rw-r--r--src/test/ui/unsafe/unsafe-subtyping.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/unsafe/unsafe-subtyping.stderr b/src/test/ui/unsafe/unsafe-subtyping.stderr
deleted file mode 100644
index 2db7cc312..000000000
--- a/src/test/ui/unsafe/unsafe-subtyping.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/unsafe-subtyping.rs:4:5
- |
-LL | fn foo(x: Option<fn(i32)>) -> Option<unsafe fn(i32)> {
- | ---------------------- expected `Option<unsafe fn(i32)>` because of return type
-LL | x
- | ^ expected unsafe fn, found normal fn
- |
- = note: expected enum `Option<unsafe fn(_)>`
- found enum `Option<fn(_)>`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.