Browse Source

no message

florian 23 years ago
parent
commit
f5e6af7abb
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tests/tbs/tb0410.pp

+ 20 - 0
tests/tbs/tb0410.pp

@@ -0,0 +1,20 @@
+{ %version=1.1 }
+procedure p1(f : single);
+  begin
+  end;
+
+procedure p2(l : longint);
+  begin
+  end;
+
+var
+   v : variant;
+   i : imyinterface;
+   l : longint;
+
+begin
+   p1(v);
+   p2(v);
+   l:=v;
+end.
+