TypeScript/tests/baselines/reference/decoratorOnInternalModule.errors.txt
2015-03-17 14:21:13 -07:00

12 lines
No EOL
406 B
Text

tests/cases/conformance/decorators/invalid/decoratorOnInternalModule.ts(4,8): error TS1203: Decorators are not valid on this declaration type.
==== tests/cases/conformance/decorators/invalid/decoratorOnInternalModule.ts (1 errors) ====
declare function dec<T>(target: T): T;
@dec
module M {
~
!!! error TS1203: Decorators are not valid on this declaration type.
}