fpc/tests/tbs/tb0416.pp
2002-11-13 12:34:37 +00:00

20 lines
185 B
ObjectPascal

function f: string;
procedure t;
begin
f := 'test';
end;
begin
t;
end;
begin
if f <> 'test' then
begin
writeln('error!');
halt(1);
end;
end.