mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
15 lines
254 B
Rust
15 lines
254 B
Rust
pub fn bad(x: &mut bool) {
|
|
if true
|
|
*x = true {}
|
|
//~^ ERROR cannot multiply `bool` by `&mut bool`
|
|
}
|
|
|
|
pub fn bad2(x: &mut bool) {
|
|
let y: bool;
|
|
y = true
|
|
*x = true;
|
|
//~^ ERROR cannot multiply `bool` by `&mut bool`
|
|
}
|
|
|
|
fn main() {}
|