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

7 lines
240 B
Plaintext

==== tests/cases/compiler/constructorArgsErrors1.ts (1 errors) ====
class foo {
constructor (static a: number) {
~~~~~~
!!! error TS1090: 'static' modifier cannot appear on a parameter.
}
}