TypeScript/tests/baselines/reference/constructorStaticParamName.types
2014-08-15 14:37:48 -07:00

11 lines
222 B
Plaintext

=== tests/cases/compiler/constructorStaticParamName.ts ===
// static as constructor parameter name should only give error if 'use strict'
class test {
>test : test
constructor (static) { }
>static : any
}