leo/tests/parser/statement/block.leo
2022-03-28 10:35:36 -07:00

26 lines
155 B
Plaintext

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