TypeScript/tests/cases/compiler/controlFlowOuterVariable.ts
2016-09-09 10:05:49 -07:00

14 lines
228 B
TypeScript

// @strictNullChecks: true
// Repros from #10641
const CONFIG = {
foo: '',
setFoo: function(foo: string) {
CONFIG.foo = foo;
}
};
const helper = function<T>(t: T[]) {
helper(t.slice(1));
}