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

21 lines
990 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/arithmeticOnInvalidTypes.ts (7 errors) ====
var x: Number;
var y: Number;
var z = x + y;
~~~~~
!!! Operator '+' cannot be applied to types 'Number' and 'Number'.
var z2 = x - y;
~
!!! The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
~
!!! The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
var z3 = x * y;
~
!!! The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
~
!!! The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
var z4 = x / y;
~
!!! The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
~
!!! The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.