no message

This commit is contained in:
florian 2005-01-19 20:52:08 +00:00
parent 7753653b4c
commit 661b1f39b7

9
tests/tbs/tb0481.pp Normal file
View File

@ -0,0 +1,9 @@
type
trec = record
data : longint;
end;
prec = ^trec;
begin
writeln(longint(@prec(0)^.data));
end.