mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 18:39:30 +02:00
20 lines
291 B
ObjectPascal
20 lines
291 B
ObjectPascal
{ %opt=-Sen }
|
|
|
|
{ Source provided for Free Pascal Bug Report 4068 }
|
|
{ Submitted by "David Butler" on 2005-06-12 }
|
|
{ e-mail: djbutler@gmail.com }
|
|
|
|
{$mode delphi}
|
|
|
|
function test: boolean;
|
|
var A, B : AnsiChar;
|
|
begin
|
|
A := '1';
|
|
B := '2';
|
|
Result := ('0' in [A..B]);
|
|
end;
|
|
|
|
begin
|
|
test;
|
|
end.
|