TypeScript/tests/baselines/reference/innerBoundLambdaEmit.types
2014-08-28 12:48:30 -07:00

22 lines
320 B
Plaintext

=== tests/cases/compiler/innerBoundLambdaEmit.ts ===
module M {
>M : typeof M
export class Foo {
>Foo : Foo
}
var bar = () => { };
>bar : () => void
>() => { } : () => void
}
interface Array<T> {
>Array : T[]
>T : T
toFoo(): M.Foo
>toFoo : () => M.Foo
>M : unknown
>Foo : M.Foo
}