+ New bugs

This commit is contained in:
daniel 1999-03-23 17:10:07 +00:00
parent 5c8193fd4c
commit 355e5bd740
2 changed files with 22 additions and 0 deletions

8
bugs/bug0234.pp Normal file
View File

@ -0,0 +1,8 @@
program bug0232;
var p:pointer;
begin
new(p);
dispose(p);
end.

14
bugs/bug0235.pp Normal file
View File

@ -0,0 +1,14 @@
program bug0233;
var s:string;
w:cardinal;
code:word;
begin
s:='192';
val(s,w,code);
if code<>0 then
writeln('Error')
else
writeln(w);
end.