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

36 lines
524 B
ObjectPascal

{$modeswitch objectivec1}
{ Written by Jonas Maebe in 2009, released into the public domain }
unit uobjc26;
interface
type
ta = objcclass(NSObject)
l: longint;
procedure taproc; message 'taproc';
end;
implementation
type
ca = objccategory(ta)
procedure implementationcategorymethod; message 'implementationcategorymethod';
end;
procedure ca.implementationcategorymethod;
begin
l:=1;
end;
procedure ta.taproc;
begin
l:=0;
implementationcategorymethod;
if l<>1 then
halt(1);
end;
end.