*** empty log message ***

This commit is contained in:
florian 2002-08-11 15:20:31 +00:00
parent b8e11ff57b
commit 23c6b6df00
2 changed files with 16 additions and 0 deletions

16
tests/tbs/tb0400.pp Normal file
View File

@ -0,0 +1,16 @@
{ %version=1.1}
{$mode delphi}
var
b : byte;
i : smallint;
i64 : int64;
q : qword;
p : pointer;
begin
p:=pointer(b);
p:=pointer(i);
p:=pointer(i64);
p:=pointer(q);
end.