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

6 lines
192 B
Plaintext

==== tests/cases/compiler/exportSameNameFuncVar.ts (1 errors) ====
export var a = 10;
export function a() {
~
!!! error TS2300: Duplicate identifier 'a'.
}