TypeScript/tests/baselines/reference/constructorArgsErrors1.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
361 B
Plaintext

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