summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/file_tests-fixture10.ts
blob: bec555da8a4d6a0a19c2da50ed6e8d911fd8a299 (plain)
1
2
3
4
5
6
7
import { a as defaultA } from "./subdir/l.ts";

const o: { a?: string } = {};

const { a = defaultA } = o;

console.log(a);