mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 04:09:30 +02:00
19 lines
178 B
ObjectPascal
19 lines
178 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw -Oonodeadvalues }
|
|
type
|
|
to1 = object
|
|
procedure Init;
|
|
end;
|
|
|
|
procedure to1.Init;
|
|
begin
|
|
end;
|
|
|
|
|
|
var
|
|
o1,o2 : to1;
|
|
|
|
begin
|
|
o1.Init;
|
|
o2:=o1;
|
|
end.
|