mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +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;
|