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

8 lines
246 B
Plaintext

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