TypeScript/tests/cases/compiler/innerBoundLambdaEmit.ts

9 lines
117 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
module M {
export class Foo {
}
var bar = () => { };
}
interface Array<T> {
toFoo(): M.Foo
}