Browse Source

no message

florian 20 years ago
parent
commit
661b1f39b7
1 changed files with 9 additions and 0 deletions
  1. 9 0
      tests/tbs/tb0481.pp

+ 9 - 0
tests/tbs/tb0481.pp

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