2020-05-21 14:49:38 -05:00
|
|
|
//@ check-pass
|
|
|
|
|
2018-11-26 10:30:19 -06:00
|
|
|
const _: bool = false && false;
|
|
|
|
const _: bool = true && false;
|
2018-11-26 03:26:42 -06:00
|
|
|
const _: bool = {
|
2018-11-26 10:30:19 -06:00
|
|
|
let mut x = true && false;
|
2018-11-26 03:26:42 -06:00
|
|
|
x
|
|
|
|
};
|
|
|
|
const _: bool = {
|
2018-11-26 10:30:19 -06:00
|
|
|
let x = true && false;
|
2018-11-26 03:26:42 -06:00
|
|
|
x
|
|
|
|
};
|
|
|
|
|
2018-11-26 06:08:55 -06:00
|
|
|
fn main() {}
|