mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 08:29:28 +02:00
16 lines
211 B
ObjectPascal
16 lines
211 B
ObjectPascal
{ %FAIL }
|
|
|
|
{ prefixed attributes modeswitch disables procedure directives inside [...] }
|
|
|
|
program tcustomattr16;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch prefixedattributes}
|
|
|
|
procedure Test; [cdecl];
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|