summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0069.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0069.stderr')
-rw-r--r--src/test/ui/error-codes/E0069.stderr11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/error-codes/E0069.stderr b/src/test/ui/error-codes/E0069.stderr
deleted file mode 100644
index ff9bbe01d..000000000
--- a/src/test/ui/error-codes/E0069.stderr
+++ /dev/null
@@ -1,11 +0,0 @@
-error[E0069]: `return;` in a function whose return type is not `()`
- --> $DIR/E0069.rs:2:5
- |
-LL | fn foo() -> u8 {
- | -- expected `u8` because of this return type
-LL | return;
- | ^^^^^^ return type is not `()`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0069`.