mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
10 lines
116 B
Plaintext
10 lines
116 B
Plaintext
//these are allowed
|
|
/* EMPTY */;
|
|
if (true) { }
|
|
if (true) pass;
|
|
|
|
|
|
//these are not allowed
|
|
// if (true) /* EMPTY */;
|
|
|