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

9 lines
162 B
TypeScript
Raw Normal View History

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