fpc/tests/webtbs/tw30443.pp
Jonas Maebe de97285393 * fixed conformsToProtocol() declaration (the protocol is not a changeable
parameter, and it's already declared as a pointer type)

git-svn-id: trunk@34246 -
2016-08-03 14:35:32 +00:00

31 lines
592 B
ObjectPascal

{ %target=darwin }
{ %cpu=powerpc,powerpc64,i386,x86_64,arm,aarch64 }
{$mode objfpc}{$H+}
{$modeswitch objectivec1}
uses
CocoaAll;
procedure CheckProtocol;
const
NSObjectProtocolName: UTF8String = 'NSObject';
var
nso: id;
proto: pobjc_protocol;
cls: pobjc_class;
begin
nso := NSObject.alloc.init;
cls := object_getClass(nso);
proto := objc_getProtocol(PAnsiChar(NSObjectProtocolName));
if class_conformsToProtocol(cls, proto) then
WriteLn('NSObject implements the NSObject protocol, as expected.')
else
halt(1);
nso.release;
end;
begin
CheckProtocol;
end.