mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 08:49:33 +02:00
18 lines
178 B
ObjectPascal
18 lines
178 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
type
|
|
ta = class
|
|
procedure MyProc(var Msg); message 1; message 'abc';
|
|
end;
|
|
|
|
procedure ta.myproc;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|