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

7 lines
73 B
TypeScript

function x() {
with({}) {
function f() {
() => this;
}
}
}