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

7 lines
87 B
TypeScript

class f {
set x(value) {
return null; // Should be an error
}
}