fpc/tests/test/tobjc42.pp
Jonas Maebe 071282b286 * add methods of objcprotocols to the list of visible "helper" methods when
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 -
2015-02-13 15:43:34 +00:00

14 lines
124 B
ObjectPascal

{ %target=darwin }
{ %recompile }
{ %norun }
{$modeswitch objectivec2}
uses uobjc42;
var
i: id;
begin
i.mytest;
end.