7 lines
107 B
Rust
Raw Normal View History

2018-08-01 00:14:26 +03:00
fn foo() {
if true {};
if true {} else {};
2018-08-04 17:12:00 +03:00
if true {} else if false {} else {};
if S {};
2018-08-01 00:14:26 +03:00
}