2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2016-02-09 13:10:22 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
#[warn(bool_comparison)]
|
2016-02-09 13:10:22 -06:00
|
|
|
fn main() {
|
|
|
|
let x = true;
|
2016-02-09 13:44:42 -06: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 13:10:22 -06:00
|
|
|
}
|