TypeScript/tests/baselines/reference/mismatchedClassConstructorVariable.errors.txt
2014-09-11 16:11:08 -07:00

6 lines
198 B
Plaintext

==== tests/cases/compiler/mismatchedClassConstructorVariable.ts (1 errors) ====
var baz: foo;
class baz { }
~~~
!!! error TS2300: Duplicate identifier 'baz'.
class foo { }