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

21 lines
504 B
Plaintext
Raw Normal View History

tests/cases/compiler/protoAssignment.ts(2,26): error TS2304: Cannot find name 'Comparable'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/protoAssignment.ts (1 errors) ====
interface Number extends Comparable<number> {
2015-03-02 21:21:53 +01:00
~~~~~~~~~~
!!! error TS2304: Cannot find name 'Comparable'.
2014-07-13 01:04:16 +02:00
compareTo(other: number);
}
Number.prototype.compareTo = function (other: number) {
return this.valueOf() == other;
}