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

11 lines
381 B
Plaintext

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