From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/parser/bad-if-statements.stderr | 86 ----------------------------- 1 file changed, 86 deletions(-) delete mode 100644 src/test/ui/parser/bad-if-statements.stderr (limited to 'src/test/ui/parser/bad-if-statements.stderr') diff --git a/src/test/ui/parser/bad-if-statements.stderr b/src/test/ui/parser/bad-if-statements.stderr deleted file mode 100644 index ee839db64..000000000 --- a/src/test/ui/parser/bad-if-statements.stderr +++ /dev/null @@ -1,86 +0,0 @@ -error: missing condition for `if` expression - --> $DIR/bad-if-statements.rs:2:7 - | -LL | if {} - | ^- if this block is the condition of the `if` expression, then it must be followed by another block - | | - | expected condition here - -error: this `if` expression is missing a block after the condition - --> $DIR/bad-if-statements.rs:7:5 - | -LL | if true && {} - | ^^ - | -help: this binary operation is possibly unfinished - --> $DIR/bad-if-statements.rs:7:8 - | -LL | if true && {} - | ^^^^^^^ - -error: expected `{`, found `x` - --> $DIR/bad-if-statements.rs:13:13 - | -LL | if true x - | ^ expected `{` - | -note: the `if` expression is missing a block after this condition - --> $DIR/bad-if-statements.rs:13:8 - | -LL | if true x - | ^^^^ -help: try placing this code inside a block - | -LL | if true { x } - | + + - -error: missing condition for `if` expression - --> $DIR/bad-if-statements.rs:18:7 - | -LL | if {} else {} - | ^- if this block is the condition of the `if` expression, then it must be followed by another block - | | - | expected condition here - -error: this `if` expression is missing a block after the condition - --> $DIR/bad-if-statements.rs:23:5 - | -LL | if true && {} else {} - | ^^ - | -help: this binary operation is possibly unfinished - --> $DIR/bad-if-statements.rs:23:8 - | -LL | if true && {} else {} - | ^^^^^^^ - -error: expected `{`, found `x` - --> $DIR/bad-if-statements.rs:29:13 - | -LL | if true x else {} - | ^ expected `{` - | -note: the `if` expression is missing a block after this condition - --> $DIR/bad-if-statements.rs:29:8 - | -LL | if true x else {} - | ^^^^ -help: try placing this code inside a block - | -LL | if true { x } else {} - | + + - -error: this `if` expression is missing a block after the condition - --> $DIR/bad-if-statements.rs:34:5 - | -LL | if true else {} - | ^^ - | -help: add a block here - --> $DIR/bad-if-statements.rs:34:12 - | -LL | if true else {} - | ^ - -error: aborting due to 7 previous errors - -- cgit v1.2.3