blob: 5a6fa77a180d6c5321404015942fac9dfa4b493d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ Source provided for Free Pascal Bug Report 3494 }
{ Submitted by "Danny Milosavljevic" on 2004-12-31 }
{ e-mail: danny_milo@yahoo.com }
program ivar;
{$mode objfpc}
uses variants;
type
ti = interface(iinterface)
end;
var
v: Variant;
i: ti;
begin
i := nil;
v := i;
i := v;
end.
|