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

8 lines
319 B
Plaintext

==== tests/cases/compiler/collisionThisExpressionAndEnumInGlobal.ts (1 errors) ====
enum _this { // Error
~~~~~
!!! error TS2399: Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.
_thisVal1,
_thisVal2,
}
var f = () => this;