summaryrefslogtreecommitdiff
path: root/tests/testdata/run/import_data_url.ts
blob: 258514a5e310740a08f28114864dd0f5943aecaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// export const a = "a";

// export enum A {
//   A,
//   B,
//   C,
// }
import * as a from "data:application/typescript;base64,ZXhwb3J0IGNvbnN0IGEgPSAiYSI7CgpleHBvcnQgZW51bSBBIHsKICBBLAogIEIsCiAgQywKfQo=";

console.log(a.a);
console.log(a.A);
console.log(a.A.A);