pascalabcnet/TestSuite/attributes5.pas

17 lines
257 B
ObjectPascal
Raw Normal View History

2023-02-26 13:10:08 +03:00
uses System;
type
[AttributeUsage(AttributeTargets.Field or AttributeTargets.Property) ]
myattr = class (Attribute) end;
TClass = class
[myattr]
a: integer;
[myattr]
property prop: integer read a;
end;
begin
end.