TypeScript/tests/baselines/reference/objectLiteralIndexerNoImplicitAny.types
2015-04-15 16:44:20 -07:00

18 lines
256 B
Plaintext

=== tests/cases/compiler/objectLiteralIndexerNoImplicitAny.ts ===
interface I {
>I : I
[s: string]: any;
>s : string
}
var x: I = {
>x : I
>I : I
>{ p: null} : { [x: string]: null; p: null; }
p: null
>p : null
>null : null
}