TypeScript/tests/baselines/reference/collisionThisExpressionAndModuleInGlobal.errors.txt
2014-07-18 16:16:28 -07:00

8 lines
300 B
Plaintext

==== tests/cases/compiler/collisionThisExpressionAndModuleInGlobal.ts (1 errors) ====
module _this { //Error
~~~~~
!!! Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.
class c {
}
}
var f = () => this;