no message

This commit is contained in:
florian 2003-10-27 20:44:42 +00:00
parent aebc04656f
commit 5edcaa9912

39
tests/tbs/tb0458.pp Normal file
View File

@ -0,0 +1,39 @@
type smallword=word;
Type LocalHeader = Record
Time : Longint;
End;
Type PkZipObject = Object
Buf : longint;
Constructor ZIPInit;
Procedure FindFirstEntry; Virtual;
End; {PkzipObject}
PkzipPtr = ^PkzipObject;
Constructor PkzipObject.ZIPInit;
Begin
End;
Procedure PkzipObject.FindFirstEntry;
var LocalHeaderBuf: LocalHeader ABSOLUTE buf;
Begin
LocalHeaderBuf.Time:=12341234;
End;
var
o : PkzipObject;
begin
o.ZIPInit;
o.FindFirstEntry;
if o.Buf<>12341234 then
begin
writeln('error');
halt(1);
end;
End.