mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-19 08:02:14 +03:00
21 lines
188 B
Plaintext
21 lines
188 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Pass
|
|
*/
|
|
|
|
if x {
|
|
return 0;
|
|
}
|
|
|
|
if (x) {
|
|
return 0;
|
|
}
|
|
|
|
if (x) {} else {}
|
|
|
|
if x+y {} else if x+z {} else {}
|
|
|
|
if x+y {
|
|
expr;
|
|
return 0;
|
|
} |