mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 02:08:18 +02:00
* new bug
This commit is contained in:
parent
13ee9660a4
commit
1e244b2616
36
tests/webtbs/tw3010.pp
Normal file
36
tests/webtbs/tw3010.pp
Normal file
@ -0,0 +1,36 @@
|
||||
{ Source provided for Free Pascal Bug Report 3010 }
|
||||
{ Submitted by "C Western" on 2004-03-13 }
|
||||
{ e-mail: mftq75@dsl.pipex.com }
|
||||
program bug1;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
{$R+}
|
||||
|
||||
uses
|
||||
Classes;
|
||||
|
||||
function Mumble(var p: TPoint; s: TStringList): Char;
|
||||
begin
|
||||
if p.x = Length(s[p.y]) then
|
||||
Result := 'a'
|
||||
else
|
||||
Result := 'b';
|
||||
end;
|
||||
|
||||
var
|
||||
p: TPoint;
|
||||
s: TStringList;
|
||||
c: char;
|
||||
begin
|
||||
p.x := 7;
|
||||
p.y := 0;
|
||||
s := TStringList.Create;
|
||||
s.Add('1234567');
|
||||
c:=Mumble(p, s);
|
||||
writeln(c);
|
||||
if c<>'a' then
|
||||
begin
|
||||
writeln('ERROR!');
|
||||
halt(1);
|
||||
end;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user