mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 12:52:36 +02:00
26 lines
260 B
ObjectPascal
26 lines
260 B
ObjectPascal
unit fdt_for_in;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
TCol = (red, blue, green);
|
|
const
|
|
tcRedBlue = [Low(TCol)..blue];
|
|
|
|
procedure DoIt;
|
|
|
|
implementation
|
|
|
|
procedure DoIt;
|
|
begin
|
|
for e{guesstype:TCol} in tcRedBlue do ;
|
|
end;
|
|
|
|
end.
|
|
|