TypeScript/tests/cases/compiler/functionAndInterfaceWithSeparateErrors.ts
2014-07-16 13:34:27 -07:00

7 lines
123 B
TypeScript

function Foo(s: string);
function Foo(n: number) { }
interface Foo {
[s: string]: string;
prop: number;
}