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

8 lines
150 B
TypeScript

// @target: ES5
class A {
get testProp() { return this.testProp; }
}
class B {
set testProp(value:string) { this.testProp = value; }
}