blob: 01be0b558ba7ecad5f0be0877cd63b6647831788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ %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}
type
NSArray = objcclass external;
MyObject = objcclass(NSArray)
end;
begin
end.
|