pascalabcnet/TestSuite/errors/err0260.pas
Бондарев Иван ea4e70e540 fix #1113
2018-08-27 21:09:54 +02:00

12 lines
160 B
ObjectPascal

type
TMyAttribute<T> = class(System.Attribute)
end;
ByteAttribute = TMyAttribute<byte>;
[ByteAttribute()]
TClass = class
end;
begin
end.