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

12 lines
406 B
Text
Raw Normal View History

2015-03-17 22:06:06 +01:00
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.
}