2020-05-21 12:49:38 -07:00
|
|
|
// check-pass
|
|
|
|
|
2018-11-26 17:30:19 +01:00
|
|
|
const _: bool = false && false;
|
|
|
|
const _: bool = true && false;
|
2018-11-26 10:26:42 +01:00
|
|
|
const _: bool = {
|
2018-11-26 17:30:19 +01:00
|
|
|
let mut x = true && false;
|
2018-11-26 10:26:42 +01:00
|
|
|
x
|
|
|
|
};
|
|
|
|
const _: bool = {
|
2018-11-26 17:30:19 +01:00
|
|
|
let x = true && false;
|
2018-11-26 10:26:42 +01:00
|
|
|
x
|
|
|
|
};
|
|
|
|
|
2018-11-26 13:08:55 +01:00
|
|
|
fn main() {}
|