mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
19 lines
151 B
ObjectPascal
19 lines
151 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
ttype=object
|
|
l1,l2 : pointer;
|
|
end;
|
|
|
|
tcl=class
|
|
end;
|
|
|
|
var
|
|
tt : ttype;
|
|
c : tcl;
|
|
begin
|
|
c:=tcl(tt);
|
|
end.
|