mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-04 22:18:56 +02:00
*** empty log message ***
This commit is contained in:
parent
2a801fcd04
commit
393f200056
24
tests/webtbs/tbug1096.pp
Normal file
24
tests/webtbs/tbug1096.pp
Normal file
@ -0,0 +1,24 @@
|
||||
Program Test;
|
||||
{$X-}
|
||||
|
||||
Function TestFunc : Boolean;
|
||||
var b : Boolean;
|
||||
begin
|
||||
TestFunc := True;
|
||||
b := True;
|
||||
if b then
|
||||
begin
|
||||
exit;
|
||||
end;
|
||||
end;
|
||||
|
||||
begin
|
||||
writeln(3 xor 1);
|
||||
if TestFunc then
|
||||
begin
|
||||
writeln('Yo');
|
||||
end;
|
||||
end.
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user