mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
22 lines
193 B
ObjectPascal
22 lines
193 B
ObjectPascal
{ %fail }
|
|
unit tw8398;
|
|
{ found error by s0t // SotSoft 07-02-24 }
|
|
interface
|
|
|
|
type
|
|
a = record
|
|
c: char;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure x;
|
|
begin
|
|
with a do
|
|
with b do
|
|
end;
|
|
|
|
|
|
begin
|
|
end.
|