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

8 lines
232 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/concatClassAndString.ts (1 errors) ====
// Shouldn't compile (the long form f = f + ""; doesn't):
class f { }
f += '';
~
!!! Invalid left-hand side of assignment expression.