assemblyscript/tests/compiler/named-import-default.ts

8 lines
114 B
TypeScript
Raw Permalink Normal View History

import {
default as get3
} from "./named-export-default";
export function getValue(): i32 {
return get3();
}