summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/return-closures.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/return-closures.stderr')
-rw-r--r--src/test/ui/suggestions/return-closures.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/suggestions/return-closures.stderr b/src/test/ui/suggestions/return-closures.stderr
deleted file mode 100644
index 8b856d8de..000000000
--- a/src/test/ui/suggestions/return-closures.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/return-closures.rs:3:5
- |
-LL | fn foo() {
- | - help: try adding a return type: `-> impl for<'a> Fn(&'a i32) -> i32`
-LL |
-LL | |x: &i32| 1i32
- | ^^^^^^^^^^^^^^ expected `()`, found closure
- |
- = note: expected unit type `()`
- found closure `[closure@$DIR/return-closures.rs:3:5: 3:14]`
-
-error[E0308]: mismatched types
- --> $DIR/return-closures.rs:9:5
- |
-LL | fn bar(i: impl Sized) {
- | - help: a return type might be missing here: `-> _`
-LL |
-LL | || i
- | ^^^^ expected `()`, found closure
- |
- = note: expected unit type `()`
- found closure `[closure@$DIR/return-closures.rs:9:5: 9:7]`
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0308`.