TypeScript/tests/baselines/reference/duplicateConstructSignature.types

8 lines
123 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/duplicateConstructSignature.ts ===
interface I {
>I : I
2014-08-15 23:33:16 +02:00
(): number;
(): string;
}