fpc/tests/webtbs/tw25869.pp
Jonas Maebe 4dfc731bdc + support for nested classes in the WPO devirtualisation and VMT
optimization infrastructure (mantis )

git-svn-id: trunk@27167 -
2014-03-16 19:46:17 +00:00

18 lines
180 B
ObjectPascal

{ %wpoparas=optvmts }
{ %wpopasses=1 }
{$MODE OBJFPC}
program test;
type
TFoo = class
type
TSubFoo = class
end;
end;
begin
TFoo.TSubFoo.Create();
end.