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

7 lines
226 B
Plaintext

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