TypeScript/tests/baselines/reference/arithmeticOnInvalidTypes.errors.txt
2014-07-12 17:30:19 -07:00

21 lines
990 B
Plaintext

==== 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.