fpc/tests/test/tcustomattr3.pp
2019-07-12 22:05:12 +00:00

23 lines
268 B
ObjectPascal

{ %fail }
program tcustomattr3;
{$mode objfpc}{$H+}
{$modeswitch prefixedattributes}
type
{ tmyt }
tmyt = class
constructor create;
end;
// tmyt is not a TCustomAttribute, so this should fail.
[tmyt]
TMyObject = class(TObject)
end;
begin
end.