TypeScript/tests/baselines/reference/decoratorOnTypeAlias.errors.txt
2015-03-17 15:03:25 -07:00

11 lines
No EOL
414 B
Text

tests/cases/conformance/decorators/invalid/decoratorOnTypeAlias.ts(3,1): error TS1206: Decorators are not valid on this declaration type.
==== tests/cases/conformance/decorators/invalid/decoratorOnTypeAlias.ts (1 errors) ====
declare function dec<T>(target: T): T;
@dec
~~~~
type T = number;
~~~~~~~~~~~~~~~~
!!! error TS1206: Decorators are not valid on this declaration type.