fpc/tests/test/uobjc42.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

13 lines
147 B
ObjectPascal

{$modeswitch objectivec2}
unit uobjc42;
interface
type
tinf = objcprotocol
procedure mytest; message 'mytest';
end;
implementation
end.