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

7 lines
265 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/classes/propertyMemberDeclarations/propertyNamedPrototype.ts (1 errors) ====
class C {
prototype: number; // ok
static prototype: C; // error
~~~~~~~~~
!!! Duplicate identifier 'prototype'.
}