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

8 lines
302 B
Plaintext

==== tests/cases/compiler/constructorStaticParamNameErrors.ts (1 errors) ====
'use strict'
// static as constructor parameter name should give error if 'use strict'
class test {
constructor (static) { }
~~~~~~
!!! error TS1003: Identifier expected.
}