mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:48:04 +02:00
20 lines
348 B
ObjectPascal
20 lines
348 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw39876a;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TInputTypes = (itText, itPassWord, itRadio, itCheckbox, itHidden, itTel,
|
|
itNumber, itUrl, itEmail, itRrange, itDate, itMonth, itWeek);
|
|
|
|
var
|
|
ts: string;
|
|
anIT: TInputTypes;
|
|
|
|
begin
|
|
ts := 'itradio, tuesday, 3';
|
|
ReadStr(ts, anIT); // <== this is not compiled ...
|
|
end.
|
|
|