blob: b913dde521df62915fd7c23aede2be02b4ddc538 (
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;
var
a: NSObject;
begin
a:=NSArray.alloc.init;
end.
|