TypeScript/tests/cases/conformance/dynamicImport/importCallExpressionIncorrect1.ts

8 lines
160 B
TypeScript
Raw Normal View History

2017-06-20 01:18:42 +02:00
// @module: esnext
// @target: esnext
// @filename: 0.ts
export function foo() { return "foo"; }
// @filename: 1.ts
import
import { foo } from './0';