mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
15 lines
136 B
ObjectPascal
15 lines
136 B
ObjectPascal
{ %FAIL }
|
|
|
|
type l = record
|
|
i:longint;
|
|
end;
|
|
|
|
|
|
var l2 : l;
|
|
y : Longint;
|
|
x : Boolean;
|
|
|
|
begin
|
|
x:=l2>y;
|
|
end.
|