mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +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;
|
|
}();
|