TypeScript/tests/baselines/reference/innerBoundLambdaEmit.types

22 lines
310 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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
}