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

25 lines
319 B
ObjectPascal

{$modeswitch objectivec1}
{ Written by Jonas Maebe in 2009, released into the public domain }
unit uobjc24;
interface
type
ta = objcclass(NSObject)
end;
implementation
type
ca = objccategory(ta)
procedure implementationcategorymethod;
end;
procedure ca.implementationcategorymethod;
begin
end;
end.