blob: 3f069d39ff301d4f1f7eca743d6683f45518b1d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ %target=darwin }
{ %cpu=powerpc,powerpc64,i386,x86_64,arm }
{ %fail }
{ Written by Jonas Maebe in 2010, released into the public domain }
{$mode objfpc}
{$modeswitch objectivec1}
uses
uobjc35g;
type
{ external names must match }
MyNSArray = objcclass external name 'NSArray2';
ta = objcclass(MyNSArray)
end;
begin
end.
|