fpc/tests/test/uobjc27a.pp
Jonas Maebe 536529977a * added header
git-svn-id: trunk@14229 -
2009-11-20 18:38:42 +00:00

30 lines
407 B
ObjectPascal

{$mode objfpc}
{$modeswitch objectivec1}
{ Written by Jonas Maebe in 2009, released into the public domain }
unit uobjc27a;
interface
type
ta = objcclass(NSObject)
end;
type
ca = objccategory(ta)
function ca_categorymethod: longint; message 'ca_categorymethod';
end;
implementation
uses
uobjc27b;
function ca.ca_categorymethod: longint;
begin
result:=da_categorymethod-1;
end;
end.