Repository URL to install this package:
Version:
3.0.0 ▾
|
{ %norun }
program tw16222;
{$ifdef fpc}
{$mode delphi}
{$endif}
type
TOuterClass = class
public
type
TInnerClass = class
end;
end;
function fn(P: Pointer): TOuterClass.TInnerClass;
begin
Result := TOuterClass.TInnerClass(P);
end;
begin
end.