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

49 lines
1.9 KiB
Plaintext
Raw Normal View History

2014-10-01 02:15:18 +02:00
tests/cases/compiler/callOverloads2.ts(3,7): error TS2300: Duplicate identifier 'Foo'.
2014-10-01 20:27:20 +02:00
tests/cases/compiler/callOverloads2.ts(11,10): error TS2300: Duplicate identifier 'Foo'.
tests/cases/compiler/callOverloads2.ts(13,10): error TS2389: Function implementation name must be 'Foo'.
2014-10-01 20:27:20 +02:00
tests/cases/compiler/callOverloads2.ts(13,10): error TS2393: Duplicate function implementation.
tests/cases/compiler/callOverloads2.ts(14,10): error TS2393: Duplicate function implementation.
tests/cases/compiler/callOverloads2.ts(16,10): error TS2391: Function implementation is missing or not immediately following the declaration.
tests/cases/compiler/callOverloads2.ts(24,1): error TS2348: Value of type 'typeof Foo' is not callable. Did you mean to include 'new'?
2014-10-01 02:15:18 +02:00
==== tests/cases/compiler/callOverloads2.ts (7 errors) ====
2014-07-13 01:04:16 +02:00
2014-10-01 20:27:20 +02:00
class Foo { // error
2014-10-01 02:15:18 +02:00
~~~
!!! error TS2300: Duplicate identifier 'Foo'.
2014-07-13 01:04:16 +02:00
bar1() { /*WScript.Echo("bar1");*/ }
constructor(x: any) {
// WScript.Echo("Constructor function has executed");
}
}
2014-10-01 20:27:20 +02:00
function Foo(); // error
~~~
!!! error TS2300: Duplicate identifier 'Foo'.
2014-07-13 01:04:16 +02:00
2014-10-01 20:27:20 +02:00
function F1(s:string) {return s;} // error
2014-07-31 01:27:13 +02:00
~~
!!! error TS2389: Function implementation name must be 'Foo'.
2014-10-01 20:27:20 +02:00
~~
!!! error TS2393: Duplicate function implementation.
function F1(a:any) { return a;} // error
~~
!!! error TS2393: Duplicate function implementation.
2014-07-13 01:04:16 +02:00
function Goo(s:string); // error - no implementation
2014-07-31 01:27:13 +02:00
~~~
!!! error TS2391: Function implementation is missing or not immediately following the declaration.
2014-07-13 01:04:16 +02:00
declare function Gar(s:String); // expect no error
var f1 = new Foo("hey");
f1.bar1();
Foo();
~~~~~
!!! error TS2348: Value of type 'typeof Foo' is not callable. Did you mean to include 'new'?
2014-07-13 01:04:16 +02:00