TypeScript/tests/cases/compiler/constructorStaticParamName.ts
2014-07-12 17:30:19 -07:00

6 lines
129 B
TypeScript

// static as constructor parameter name should only give error if 'use strict'
class test {
constructor (static) { }
}