fpc/tests/webtbs/tw16222.pp
2010-04-09 17:10:52 +00:00

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.