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

26 lines
158 B
Plaintext

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