2017-09-18 12:47:33 +02:00
|
|
|
|
|
|
|
|
2016-02-09 20:10:22 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
#[warn(bool_comparison)]
|
2016-02-09 20:10:22 +01:00
|
|
|
fn main() {
|
|
|
|
let x = true;
|
2016-02-09 20:44:42 +01:00
|
|
|
if x == true { "yes" } else { "no" };
|
|
|
|
if x == false { "yes" } else { "no" };
|
|
|
|
if true == x { "yes" } else { "no" };
|
|
|
|
if false == x { "yes" } else { "no" };
|
2016-02-09 20:10:22 +01:00
|
|
|
}
|