mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 08:53:42 +02:00
16 lines
261 B
ObjectPascal
16 lines
261 B
ObjectPascal
{ %FAIL }
|
|
program tcustomattr20;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch prefixedattributes}
|
|
|
|
type
|
|
{ ensure that arguments of non existing attributes are skipped correctly }
|
|
[TMyAttributeDoesNotExist('Alpha', 42)]
|
|
TMyObject = class(TObject)
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|