Browse Source

no message

florian 20 years ago
parent
commit
afd6156f08
1 changed files with 18 additions and 0 deletions
  1. 18 0
      tests/webtbs/tw3494.pp

+ 18 - 0
tests/webtbs/tw3494.pp

@@ -0,0 +1,18 @@
+{ Source provided for Free Pascal Bug Report 3494 }
+{ Submitted by "Danny Milosavljevic" on  2004-12-31 }
+{ e-mail: [email protected] }
+program ivar;
+uses variants;
+
+type
+  ti = interface(iinterface)
+  end;
+
+var
+  v: Variant;
+  i: ti;
+begin
+  i := nil;
+  v := i;
+  i := v;
+end.