mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00
22 lines
273 B
ObjectPascal
22 lines
273 B
ObjectPascal
{ %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. |