swc/bundler/tests/fixture/deno-8680/output/entry.ts

12 lines
235 B
TypeScript
Raw Normal View History

const mod = function() {
const a = "hello world";
const __instanceof = a;
return {
instanceof: __instanceof
};
}();
const y = mod;
const __instanceof = mod.instanceof;
const x = __instanceof;
console.log(x, y);