TypeScript/tests/baselines/reference/innerBoundLambdaEmit.types
2014-08-15 14:37:48 -07:00

22 lines
310 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 : () => Foo
>M : M
>Foo : Foo
}