fpc/tests/test/uobjc39.pp
Jonas Maebe b9c54fab0d * fixed finding the real definition for formal Objective-C protocols
* fixed printed source code positions in error message in case the external
    name of a formal and of a real definition don't match

git-svn-id: trunk@20425 -
2012-02-25 11:52:35 +00:00

15 lines
326 B
ObjectPascal

{$mode objfpc}
{$modeswitch objectivec1}
unit uobjc39;
interface
type
UITextInputDelegateProtocol = objcprotocol external name 'UITextInputDelegate';
UITextInputTokenizerProtocol = objcprotocol external name 'UITextInputTokenizer';
UITextInputProtocol = objcprotocol external name 'UITextInput';
implementation
end.