TypeScript/tests/baselines/reference/withStatements.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
263 B
Plaintext

==== tests/cases/conformance/statements/withStatements/withStatements.ts (1 errors) ====
var x = 12;
with (x) {
~
!!! error TS2410: All symbols within a 'with' block will be resolved to 'any'.
name = 'twelve'
id = 12
}