๐ Search Terms
paste edits
๐ Version & Regression Information
Nightly build with vscode insiders
โฏ Playground Link
No response
๐ป Code
const k = 1;
console.log(k);
/**/
Copy console.log(k); and paste it at /**/ in the same file.
๐ Actual behavior
export import { k } from "./b";
const k = 1;
console.log(k);console.log(k);
๐ Expected behavior
const k = 1;
console.log(k);
console.log(k);
Additional information about the issue
No response