TypeScript/tests/baselines/reference/arrowFunctionInConstructorArgument1.errors.txt
2014-09-12 13:35:07 -07:00

11 lines
402 B
Plaintext

tests/cases/compiler/arrowFunctionInConstructorArgument1.ts(4,30): error TS2304: Cannot find name 'asdf'.
==== tests/cases/compiler/arrowFunctionInConstructorArgument1.ts (1 errors) ====
class C {
constructor(x: () => void) { }
}
var c = new C(() => { return asdf; } ) // should error
~~~~
!!! error TS2304: Cannot find name 'asdf'.