mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 13:17:09 +03:00
8 lines
111 B
JavaScript
8 lines
111 B
JavaScript
(function() {
|
|
try {
|
|
throw 'a';
|
|
} catch (b) {
|
|
}
|
|
c(); // This must not be removed.
|
|
}());
|