Browse Source

no message

florian 20 years ago
parent
commit
db77655ec7
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/webtbs/tw3774.pp

+ 13 - 0
tests/webtbs/tw3774.pp

@@ -0,0 +1,13 @@
+{ Source provided for Free Pascal Bug Report 3774 }
+{ Submitted by "Sergey@michint" on  2005-03-11 }
+{ e-mail:  }
+{$C+}
+
+var
+  i, ec: Integer;
+begin
+  Val('0x123', i, ec);
+  Assert(ec=0);
+  Assert(i=$123);
+  writeln('ok');
+end.