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

6 lines
83 B
TypeScript

// @target: es5
class C {
set X(v = 0) { }
static set X(v2 = 0) { }
}