summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-54109-without-witness.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/did_you_mean/issue-54109-without-witness.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/did_you_mean/issue-54109-without-witness.stderr')
-rw-r--r--src/test/ui/did_you_mean/issue-54109-without-witness.stderr66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/test/ui/did_you_mean/issue-54109-without-witness.stderr b/src/test/ui/did_you_mean/issue-54109-without-witness.stderr
deleted file mode 100644
index 6455b0863..000000000
--- a/src/test/ui/did_you_mean/issue-54109-without-witness.stderr
+++ /dev/null
@@ -1,66 +0,0 @@
-error: `and` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:13:15
- |
-LL | let _ = a and b;
- | ^^^ help: use `&&` to perform logical conjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `and` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:15:10
- |
-LL | if a and b {
- | ^^^ help: use `&&` to perform logical conjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `or` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:24:15
- |
-LL | let _ = a or b;
- | ^^ help: use `||` to perform logical disjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `or` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:26:10
- |
-LL | if a or b {
- | ^^ help: use `||` to perform logical disjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `and` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:34:11
- |
-LL | if (a and b) {
- | ^^^ help: use `&&` to perform logical conjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `or` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:42:11
- |
-LL | if (a or b) {
- | ^^ help: use `||` to perform logical disjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `and` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:50:13
- |
-LL | while a and b {
- | ^^^ help: use `&&` to perform logical conjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: `or` is not a logical operator
- --> $DIR/issue-54109-without-witness.rs:58:13
- |
-LL | while a or b {
- | ^^ help: use `||` to perform logical disjunction
- |
- = note: unlike in e.g., Python and PHP, `&&` and `||` are used for logical operators
-
-error: aborting due to 8 previous errors
-