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

22 lines
316 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 : any
>Foo : M.Foo
}