mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 03:57:10 +03:00
8 lines
84 B
JavaScript
8 lines
84 B
JavaScript
|
var a = 1,
|
||
|
b = 2;
|
||
|
switch (a--) {
|
||
|
default:
|
||
|
b++;
|
||
|
}
|
||
|
console.log(a, b);
|