TypeScript/tests/baselines/reference/this_inside-enum-should-not-be-allowed.errors.txt
2014-07-12 17:30:19 -07:00

14 lines
541 B
Plaintext

==== tests/cases/compiler/this_inside-enum-should-not-be-allowed.ts (2 errors) ====
enum TopLevelEnum {
ThisWasAllowedButShouldNotBe = this // Should not be allowed
~~~~
!!! 'this' cannot be referenced in current location.
}
module ModuleEnum {
enum EnumInModule {
WasADifferentError = this // this was handled as if this was in a module
~~~~
!!! 'this' cannot be referenced in current location.
}
}