fpc/tests/test/uobjc41.pp
Jonas Maebe 990e47f2d3 * give a warning instead of an error if a parameter or local variable in a
an Objective-C method masks an identifier from a category, because due
    to the fact that all standard categories are imported at the same time via
    the CocoaAll unit, this can often happen with categories you don't know/
    care about. These errors also didn't happen in 2.6.x

git-svn-id: trunk@29497 -
2015-01-17 15:27:42 +00:00

24 lines
260 B
ObjectPascal

{$mode objfpc}
{$modeswitch objectivec2}
unit uobjc41;
interface
type
NSSubject = objcclass(NSObject)
end;
MyCategory = objccategory(NSObject)
procedure key; message 'key';
end;
implementation
procedure MyCategory.key;
begin
end;
begin
end.