TypeScript/tests/baselines/reference/protoAssignment.errors.txt
2015-03-02 12:21:53 -08:00

21 lines
504 B
Plaintext

tests/cases/compiler/protoAssignment.ts(2,26): error TS2304: Cannot find name 'Comparable'.
==== tests/cases/compiler/protoAssignment.ts (1 errors) ====
interface Number extends Comparable<number> {
~~~~~~~~~~
!!! error TS2304: Cannot find name 'Comparable'.
compareTo(other: number);
}
Number.prototype.compareTo = function (other: number) {
return this.valueOf() == other;
}