mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
18 lines
169 B
ObjectPascal
18 lines
169 B
ObjectPascal
{ %fail}
|
|
{ %norun}
|
|
program terecs4;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TFoo = record
|
|
destructor Destroy; // not allowed
|
|
end;
|
|
|
|
destructor TFoo.Destroy;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|