Files
Toy/tests/integrations/test_control_flow.toy

10 lines
116 B
Plaintext

//these are allowed
/* EMPTY */;
if (true) { }
if (true) pass;
//these are not allowed
// if (true) /* EMPTY */;