mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
|
!(function (Infinity, NaN, undefined) {
|
||
|
console.log("a"[1 / 0], "b"[1 / 0]);
|
||
|
console.log("c".NaN, "d".NaN);
|
||
|
console.log("e"[void 0], "f"[void 0]);
|
||
|
})(0, 0, 0);
|