Files
cappuccino/Tests/Objective-J/Preprocessor/OutputTests/Misc/empty-statements.j
T
2013-11-28 18:39:01 +00:00

8 lines
120 B
Plaintext

function f(x) {
var a = 2, b = 1;
while (a < b);
for (;;);
if (a < b); else;
do {} while (a < b);
}