mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @noEmit: true
|
||
|
// @Filename: a.js
|
||
|
var /*1*/x = function foo() {
|
||
|
}
|
||
|
x.a = function bar() {
|
||
|
}
|
||
|
// @Filename: b.ts
|
||
|
var x = function () {
|
||
|
return 1;
|
||
|
}();
|