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

16 lines
545 B
Plaintext
Raw Normal View History

tests/cases/compiler/staticPrototypeProperty.ts(2,11): error TS2300: Duplicate identifier 'prototype'.
tests/cases/compiler/staticPrototypeProperty.ts(6,11): error TS2300: Duplicate identifier 'prototype'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/staticPrototypeProperty.ts (2 errors) ====
class C {
static prototype() { }
~~~~~~~~~
!!! error TS2300: Duplicate identifier 'prototype'.
2014-07-13 01:04:16 +02:00
}
class C2 {
static prototype;
~~~~~~~~~
!!! error TS2300: Duplicate identifier 'prototype'.
2014-07-13 01:04:16 +02:00
}