TypeScript/tests/cases/compiler/asyncFunctionsAcrossFiles.ts
2016-01-14 17:51:34 -08:00

15 lines
257 B
TypeScript

// @target: es6
// @filename: a.ts
import { b } from './b';
export const a = {
f: async () => {
await b.f();
}
};
// @filename: b.ts
import { a } from './a';
export const b = {
f: async () => {
await a.f();
}
};