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

6 lines
178 B
Plaintext

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