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

10 lines
211 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/classCannotExtendVar.ts (1 errors) ====
var Markup;
class Markup {
~~~~~~
!!! Duplicate identifier 'Markup'.
constructor() {
}
}