TypeScript/tests/cases/compiler/allowSyntheticDefaultImports8.ts

11 lines
216 B
TypeScript
Raw Normal View History

// @allowSyntheticDefaultImports: false
// @module: system
// @Filename: b.d.ts
export function foo();
export function bar();
// @Filename: a.ts
import { default as Foo } from "./b";
Foo.bar();
Foo.foo();