TypeScript/tests/cases/compiler/circularContextualReturnType.ts
2017-08-14 09:08:11 +02:00

10 lines
123 B
TypeScript

// @strict: true
// Repro from #17711
Object.freeze({
foo() {
return Object.freeze('a');
},
});