mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +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 -
13 lines
147 B
ObjectPascal
13 lines
147 B
ObjectPascal
{$modeswitch objectivec2}
|
|
unit uobjc42;
|
|
|
|
interface
|
|
type
|
|
tinf = objcprotocol
|
|
procedure mytest; message 'mytest';
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|