Browse Source

no message

florian 21 years ago
parent
commit
210930d1bb
1 changed files with 17 additions and 0 deletions
  1. 17 0
      tests/webtbs/tw3111.pp

+ 17 - 0
tests/webtbs/tw3111.pp

@@ -0,0 +1,17 @@
+var
+  Start : Cardinal;
+  Run,Text: PWideChar;
+  RunLen: Cardinal;
+
+begin
+  Start:=100;
+  Run:=nil;
+  Text:=Run+10;
+  Start:=Start+Run-Text;
+  if Start<>90 then
+    begin
+      writeln('error');
+      halt(1);
+    end;
+end.
+