1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-07-25 19:22:13 +00:00
Files
assemblyscript/tests/parser/while.ts.fixture.ts
2018-03-17 01:37:05 +01:00

11 lines
73 B
TypeScript

while (1) {
;
}
while (false) {
;
}
while ("str") {
;
}
while (1);