TypeScript/tests/baselines/reference/arrowFunctionInConstructorArgument1.errors.txt

11 lines
402 B
Plaintext
Raw Normal View History

tests/cases/compiler/arrowFunctionInConstructorArgument1.ts(4,30): error TS2304: Cannot find name 'asdf'.
2014-07-13 01:04:16 +02:00
==== 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'.
2014-07-13 01:04:16 +02:00