TypeScript/tests/baselines/reference/functionExpressionInWithBlock.errors.txt
2014-07-21 17:10:04 -07:00

10 lines
257 B
Plaintext

==== tests/cases/compiler/functionExpressionInWithBlock.ts (1 errors) ====
function x() {
with({}) {
~~
!!! All symbols within a 'with' block will be resolved to 'any'.
function f() {
() => this;
}
}
}