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

12 lines
305 B
Plaintext

==== tests/cases/compiler/staticPrototypeProperty.ts (2 errors) ====
class C {
static prototype() { }
~~~~~~~~~
!!! Duplicate identifier 'prototype'.
}
class C2 {
static prototype;
~~~~~~~~~
!!! Duplicate identifier 'prototype'.
}