mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
// reported from issue #60
|
|
void function() {
|
|
var a; // this foo should be dropped
|
|
a = function() {
|
|
return 1;
|
|
};
|
|
}.b(this);
|