mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:28:13 +02:00
18 lines
279 B
ObjectPascal
18 lines
279 B
ObjectPascal
|
|
type
|
|
TDragHandleStyle = (dhDouble, dhNone, dhSingle);
|
|
|
|
|
|
var b : boolean;
|
|
fdraghandlestyle : TDraghandlestyle;
|
|
i : longint;
|
|
begin
|
|
i:=0;
|
|
FDraghandlestyle:=dhDouble;
|
|
for B := False to (FDragHandleStyle = dhDouble) do
|
|
inc(i);
|
|
if (i<>2) then
|
|
halt(1);
|
|
end.
|
|
|