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

12 lines
496 B
Plaintext
Raw Normal View History

2014-10-01 02:15:18 +02:00
tests/cases/compiler/ambientClassOverloadForFunction.ts(1,15): error TS2300: Duplicate identifier 'foo'.
2014-10-01 20:27:20 +02:00
tests/cases/compiler/ambientClassOverloadForFunction.ts(2,10): error TS2300: Duplicate identifier 'foo'.
2014-10-01 02:15:18 +02:00
==== tests/cases/compiler/ambientClassOverloadForFunction.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
declare class foo{};
2014-10-01 02:15:18 +02:00
~~~
!!! error TS2300: Duplicate identifier 'foo'.
2014-07-13 01:04:16 +02:00
function foo() { return null; }
2014-10-01 20:27:20 +02:00
~~~
!!! error TS2300: Duplicate identifier 'foo'.
2014-07-13 01:04:16 +02:00