mirror of
https://github.com/swc-project/swc.git
synced 2024-12-31 17:47:12 +03:00
21 lines
401 B
JavaScript
21 lines
401 B
JavaScript
|
function f() {
|
||
|
!(function () {
|
||
|
return t;
|
||
|
})()
|
||
|
? console.log(false)
|
||
|
: console.log(true),
|
||
|
(function () {
|
||
|
console.log("something");
|
||
|
})();
|
||
|
}
|
||
|
function g() {
|
||
|
(function () {
|
||
|
console.log("something");
|
||
|
})(),
|
||
|
(function () {
|
||
|
return t;
|
||
|
})()
|
||
|
? console.log(true)
|
||
|
: console.log(false);
|
||
|
}
|