mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-09 14:25:24 +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() {}
|