@@ -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;
+ writeln(3 xor 1);
+ if TestFunc then
+ writeln('Yo');
+end.