TypeScript/tests/baselines/reference/withStatements.errors.txt

10 lines
254 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/statements/withStatements/withStatements.ts (2 errors) ====
var x = 12;
with (x) {
name = 'twelve'
~~~~
!!! Cannot find name 'name'.
id = 12
~~
!!! Cannot find name 'id'.
}