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

6 lines
264 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/newOnInstanceSymbol.ts (1 errors) ====
class C {}
var x = new C(); // should be ok
new x(); // should error
~~~~~~~
!!! error TS2351: Cannot use 'new' with an expression whose type lacks a call or construct signature.