summaryrefslogtreecommitdiffstats
path: root/tests/ui/expr/if/if-no-match-bindings.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 /tests/ui/expr/if/if-no-match-bindings.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 'tests/ui/expr/if/if-no-match-bindings.stderr')
-rw-r--r--tests/ui/expr/if/if-no-match-bindings.stderr95
1 files changed, 95 insertions, 0 deletions
diff --git a/tests/ui/expr/if/if-no-match-bindings.stderr b/tests/ui/expr/if/if-no-match-bindings.stderr
new file mode 100644
index 000000000..737a5d604
--- /dev/null
+++ b/tests/ui/expr/if/if-no-match-bindings.stderr
@@ -0,0 +1,95 @@
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:18:8
+ |
+LL | if b_ref() {}
+ | ^^^^^^^ expected `bool`, found `&bool`
+ |
+help: consider dereferencing the borrow
+ |
+LL | if *b_ref() {}
+ | +
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:19:8
+ |
+LL | if b_mut_ref() {}
+ | ^^^^^^^^^^^ expected `bool`, found `&mut bool`
+ |
+help: consider dereferencing the borrow
+ |
+LL | if *b_mut_ref() {}
+ | +
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:20:8
+ |
+LL | if &true {}
+ | ^^^^^ expected `bool`, found `&bool`
+ |
+help: consider removing the borrow
+ |
+LL - if &true {}
+LL + if true {}
+ |
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:21:8
+ |
+LL | if &mut true {}
+ | ^^^^^^^^^ expected `bool`, found `&mut bool`
+ |
+help: consider removing the borrow
+ |
+LL - if &mut true {}
+LL + if true {}
+ |
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:24:11
+ |
+LL | while b_ref() {}
+ | ^^^^^^^ expected `bool`, found `&bool`
+ |
+help: consider dereferencing the borrow
+ |
+LL | while *b_ref() {}
+ | +
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:25:11
+ |
+LL | while b_mut_ref() {}
+ | ^^^^^^^^^^^ expected `bool`, found `&mut bool`
+ |
+help: consider dereferencing the borrow
+ |
+LL | while *b_mut_ref() {}
+ | +
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:26:11
+ |
+LL | while &true {}
+ | ^^^^^ expected `bool`, found `&bool`
+ |
+help: consider removing the borrow
+ |
+LL - while &true {}
+LL + while true {}
+ |
+
+error[E0308]: mismatched types
+ --> $DIR/if-no-match-bindings.rs:27:11
+ |
+LL | while &mut true {}
+ | ^^^^^^^^^ expected `bool`, found `&mut bool`
+ |
+help: consider removing the borrow
+ |
+LL - while &mut true {}
+LL + while true {}
+ |
+
+error: aborting due to 8 previous errors
+
+For more information about this error, try `rustc --explain E0308`.