mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
40 lines
456 B
TypeScript
40 lines
456 B
TypeScript
// @allowUnreachableCode: true
|
|
|
|
do {
|
|
continue;
|
|
} while(true)
|
|
|
|
ONE:
|
|
do {
|
|
continue ONE;
|
|
}
|
|
while (true)
|
|
|
|
TWO:
|
|
THREE:
|
|
do {
|
|
continue THREE;
|
|
}while (true)
|
|
|
|
FOUR:
|
|
do {
|
|
FIVE:
|
|
do {
|
|
continue FOUR;
|
|
}while (true)
|
|
}while (true)
|
|
|
|
do {
|
|
SIX:
|
|
do continue SIX; while(true)
|
|
}while (true)
|
|
|
|
SEVEN:
|
|
do do do continue SEVEN; while (true) while (true) while (true)
|
|
|
|
EIGHT:
|
|
do{
|
|
var fn = function () { }
|
|
continue EIGHT;
|
|
}while(true)
|