mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
|
import { instanceof as x } from "./dep";
|
||
|
// Second import is required, otherwise the value is inlined instead of
|
||
|
// being put in an invalid local variable.
|
||
|
import * as y from "./dep";
|
||
|
|
||
|
console.log(x, y);
|