fpc/tests/test/tsel1.pp
Jonas Maebe 464d595cc6 * renamed selector() to objcselector() for consistency with the way all
other Objective-C integration keywords/functions are being named

git-svn-id: trunk@13456 -
2009-07-26 14:06:34 +00:00

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.