=== tests/cases/conformance/decorators/class/property/decoratorOnClassProperty11.ts === declare function dec(): (target: any, propertyKey: string) => void; >dec : () => (target: any, propertyKey: string) => void >T : T >target : any >propertyKey : string class C { >C : C @dec prop; >dec : () => (target: any, propertyKey: string) => void >prop : any }