leo/tests/parser/statement/block.leo
2021-04-12 13:15:39 -07:00

26 lines
151 B
Plaintext

/*
ns: ParseStatement
expectation: Pass
*/
{}
{
return ();
}
{{}}
{
{
return ();
}
}
{
if x {
return ();
}
}