2019-04-25 05:48:26 +02:00
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:19:8
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
|
LL | if b_ref() {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^ expected `bool`, found `&bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
|
|
LL | if *b_ref() {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:20:8
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
|
LL | if b_mut_ref() {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^^^^^ expected `bool`, found `&mut bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
|
|
LL | if *b_mut_ref() {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:21:8
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
|
LL | if &true {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^ expected `bool`, found `&bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider removing the borrow
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - if &true {}
|
|
|
|
|
LL + if true {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:22:8
|
2019-04-25 05:48:26 +02:00
|
|
|
|
|
|
|
|
|
LL | if &mut true {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^^^ expected `bool`, found `&mut bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider removing the borrow
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - if &mut true {}
|
|
|
|
|
LL + if true {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-04-25 05:48:26 +02:00
|
|
|
|
2019-06-20 14:13:28 +02:00
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:25:11
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
|
|
|
|
LL | while b_ref() {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^ expected `bool`, found `&bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
|
|
LL | while *b_ref() {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:26:11
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
|
|
|
|
LL | while b_mut_ref() {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^^^^^ expected `bool`, found `&mut bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
|
|
LL | while *b_mut_ref() {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:27:11
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
2019-10-06 12:03:53 +08:00
|
|
|
LL | while &true {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^ expected `bool`, found `&bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider removing the borrow
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - while &true {}
|
|
|
|
|
LL + while true {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-01 22:45:00 +00:00
|
|
|
--> $DIR/if-no-match-bindings.rs:28:11
|
2019-06-20 14:13:28 +02:00
|
|
|
|
|
2019-10-06 12:03:53 +08:00
|
|
|
LL | while &mut true {}
|
2021-06-28 11:22:47 -07:00
|
|
|
| ^^^^^^^^^ expected `bool`, found `&mut bool`
|
|
|
|
|
|
|
|
|
|
|
help: consider removing the borrow
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - while &mut true {}
|
|
|
|
|
LL + while true {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-06-20 14:13:28 +02:00
|
|
|
|
2024-03-11 21:28:16 +00:00
|
|
|
error[E0515]: cannot return reference to temporary value
|
|
|
|
|
--> $DIR/if-no-match-bindings.rs:8:38
|
|
|
|
|
|
|
|
|
|
|
LL | fn b_mut_ref<'a>() -> &'a mut bool { &mut true }
|
|
|
|
|
| ^^^^^----
|
|
|
|
|
| | |
|
|
|
|
|
| | temporary value created here
|
|
|
|
|
| returns a reference to data owned by the current function
|
|
|
|
|
|
2024-02-01 22:45:00 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2019-04-25 05:48:26 +02:00
|
|
|
|
2024-02-01 22:45:00 +00:00
|
|
|
Some errors have detailed explanations: E0308, E0515.
|
|
|
|
|
For more information about an error, try `rustc --explain E0308`.
|