summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/if-without-else-result.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/expr/if/if-without-else-result.stderr')
-rw-r--r--src/test/ui/expr/if/if-without-else-result.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/expr/if/if-without-else-result.stderr b/src/test/ui/expr/if/if-without-else-result.stderr
deleted file mode 100644
index 317faf7c6..000000000
--- a/src/test/ui/expr/if/if-without-else-result.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0317]: `if` may be missing an `else` clause
- --> $DIR/if-without-else-result.rs:2:13
- |
-LL | let a = if true { true };
- | ^^^^^^^^^^----^^
- | | |
- | | found here
- | expected `bool`, found `()`
- |
- = note: `if` expressions without `else` evaluate to `()`
- = help: consider adding an `else` block that evaluates to the expected type
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0317`.