TypeScript/tests/cases/compiler/innerBoundLambdaEmit.ts
2014-07-12 17:30:19 -07:00

9 lines
117 B
TypeScript

module M {
export class Foo {
}
var bar = () => { };
}
interface Array<T> {
toFoo(): M.Foo
}