mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 15:04:44 +00:00
15 lines
204 B
Rust
15 lines
204 B
Rust
// check-pass
|
|
|
|
const _: bool = false && false;
|
|
const _: bool = true && false;
|
|
const _: bool = {
|
|
let mut x = true && false;
|
|
x
|
|
};
|
|
const _: bool = {
|
|
let x = true && false;
|
|
x
|
|
};
|
|
|
|
fn main() {}
|