TypeScript/tests/cases/compiler/circularContextualReturnType.ts

10 lines
123 B
TypeScript
Raw Normal View History

2017-08-14 09:08:11 +02:00
// @strict: true
// Repro from #17711
Object.freeze({
foo() {
return Object.freeze('a');
},
});