mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
6 lines
76 B
JavaScript
6 lines
76 B
JavaScript
|
try {
|
||
|
throw 42;
|
||
|
} catch (a) {
|
||
|
function a() { }
|
||
|
console.log(a);
|
||
|
}
|