mirror of
https://github.com/swc-project/swc.git
synced 2025-01-08 23:10:13 +03:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
|
x = 42;
|
||
|
(function a() {})();
|
||
|
!(function b() {})();
|
||
|
~(function c() {})();
|
||
|
+(function d() {})();
|
||
|
-(function e() {})();
|
||
|
void (function f() {})();
|
||
|
typeof (function g() {})();
|