mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-02-02 05:28:12 +01:00
18 lines
391 B
ObjectPascal
18 lines
391 B
ObjectPascal
{ %target=darwin }
|
|
{ %cpu=powerpc,powerpc64,i386,x86_64,arm }
|
|
{ %norun }
|
|
|
|
{ Written by Jonas Maebe in 2009, released into the public domain }
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch objectivec1}
|
|
|
|
type
|
|
ta = objcclass(NSObject)
|
|
procedure test(l: longint; a: array of const); message 'class:';
|
|
procedure test2(l: longint); varargs; message 'class:';
|
|
end; external name 'NSObject';
|
|
|
|
begin
|
|
end.
|