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

11 lines
506 B
Plaintext
Raw Normal View History

tests/cases/conformance/expressions/functionCalls/forgottenNew.ts(5,14): error TS2348: Value of type 'typeof NullLogger' is not callable. Did you mean to include 'new'?
==== tests/cases/conformance/expressions/functionCalls/forgottenNew.ts (1 errors) ====
2014-07-13 01:04:16 +02:00
module Tools {
export class NullLogger { }
}
var logger = Tools.NullLogger();
~~~~~~~~~~~~~~~~~~
!!! error TS2348: Value of type 'typeof NullLogger' is not callable. Did you mean to include 'new'?