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

5 lines
106 B
TypeScript

class C {
constructor(x: () => void) { }
}
var c = new C(() => { return asdf; } ) // should error