mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00

other Objective-C integration keywords/functions are being named git-svn-id: trunk@13456 -
16 lines
253 B
ObjectPascal
16 lines
253 B
ObjectPascal
{ %target=darwin }
|
|
{ %cpu=powerpc,i386 }
|
|
{ %norun }
|
|
|
|
{$modeswitch objectivec1}
|
|
|
|
var
|
|
a: sel;
|
|
begin
|
|
a:=objcselector('mymethod');
|
|
a:=objcselector('mymethod');
|
|
a:=objcselector('mymethod:');
|
|
a:=objcselector('::');
|
|
a:=objcselector('a:b:c:');
|
|
end.
|