mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00

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 -
24 lines
260 B
ObjectPascal
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.
|