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/missing/missing-block-hint.stderr | 30 --------------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/test/ui/missing/missing-block-hint.stderr (limited to 'src/test/ui/missing/missing-block-hint.stderr') diff --git a/src/test/ui/missing/missing-block-hint.stderr b/src/test/ui/missing/missing-block-hint.stderr deleted file mode 100644 index 16954223a..000000000 --- a/src/test/ui/missing/missing-block-hint.stderr +++ /dev/null @@ -1,30 +0,0 @@ -error: expected `{`, found `=>` - --> $DIR/missing-block-hint.rs:3:18 - | -LL | if (foo) => {} - | ^^ expected `{` - | -note: the `if` expression is missing a block after this condition - --> $DIR/missing-block-hint.rs:3:12 - | -LL | if (foo) => {} - | ^^^^^ - -error: expected `{`, found `bar` - --> $DIR/missing-block-hint.rs:7:13 - | -LL | bar; - | ^^^ expected `{` - | -note: the `if` expression is missing a block after this condition - --> $DIR/missing-block-hint.rs:6:12 - | -LL | if (foo) - | ^^^^^ -help: try placing this code inside a block - | -LL | { bar; } - | + + - -error: aborting due to 2 previous errors - -- cgit v1.2.3