TypeScript/tests/baselines/reference/ParameterList8.js

9 lines
197 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [ParameterList8.ts]
declare class C2 {
constructor(public p1:string); // ERROR
constructor(private p2:number); // ERROR
constructor(public p3:any); // ERROR
}
//// [ParameterList8.js]