mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:11:45 +02:00

loading them from ppu (like was already done when they were initially compiler), so they can be called via the "id" type even if no classes are in scope that implement them git-svn-id: trunk@29686 -
14 lines
124 B
ObjectPascal
14 lines
124 B
ObjectPascal
{ %target=darwin }
|
|
{ %recompile }
|
|
{ %norun }
|
|
|
|
{$modeswitch objectivec2}
|
|
|
|
uses uobjc42;
|
|
|
|
var
|
|
i: id;
|
|
begin
|
|
i.mytest;
|
|
end.
|