mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
12 lines
129 B
TypeScript
12 lines
129 B
TypeScript
|
// @out: output.js
|
||
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @Filename: a.js
|
||
|
this.a = 10;
|
||
|
this.a;
|
||
|
a;
|
||
|
|
||
|
// @Filename: b.js
|
||
|
this.a;
|
||
|
a;
|