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

10 lines
438 B
Plaintext

==== tests/cases/compiler/ParameterList7.ts (2 errors) ====
class C1 {
constructor(public p1:string); // ERROR
~~~~~~~~~~~~~~~~
!!! A parameter property is only allowed in a constructor implementation.
constructor(private p2:number); // ERROR
~~~~~~~~~~~~~~~~~
!!! A parameter property is only allowed in a constructor implementation.
constructor(public p3:any) {} // OK
}