mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
15 lines
146 B
TypeScript
15 lines
146 B
TypeScript
// @removeComments: false
|
|
|
|
const a = 1;
|
|
const f1 = () =>
|
|
`${
|
|
// a
|
|
a
|
|
}a`;
|
|
|
|
const f2 = () =>
|
|
`${
|
|
// a
|
|
a
|
|
}`;
|