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

20 lines
798 B
Plaintext

==== tests/cases/compiler/implicitAnyDeclareMemberWithoutType2.ts (5 errors) ====
// this should be an error
class C {
public x = null;// error at "x"
~~~~~~~~~~~~~~~~
!!! error TS7008: Member 'x' implicitly has an 'any' type.
public x1: string // no error
constructor(c1, c2, c3: string) { } // error at "c1, c2"
~~
!!! error TS7006: Parameter 'c1' implicitly has an 'any' type.
~~
!!! error TS7006: Parameter 'c2' implicitly has an 'any' type.
funcOfC(f1, f2, f3: number) { } // error at "f1,f2"
~~
!!! error TS7006: Parameter 'f1' implicitly has an 'any' type.
~~
!!! error TS7006: Parameter 'f2' implicitly has an 'any' type.
}