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

12 lines
136 B
ObjectPascal

{ %target=darwin }
{ %cpu=powerpc,i386 }
{ %fail }
{$modeswitch objectivec1}
var
a: sel;
begin
a:=objcselector('my:method');
end.