TypeScript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName2.ts

4 lines
81 B
TypeScript
Raw Normal View History

2015-07-21 08:30:43 +02:00
interface foo { }
interface bar { }
let bar: bar | foo;
let foo: bar | foo;