blob: 41b4f9bb4668d2fef28f6dfee0b406ade1a2a8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ %target=darwin }
{ %cpu=powerpc,powerpc64,i386,x86_64,arm }
{ %opt=-vh -Seh }
{ %norun }
{ Written by Jonas Maebe in 2009, released into the public domain }
{$mode objfpc}
{$modeswitch objectivec1}
type
TMyTestClass = objcclass external name 'NSObject' (NSObject)
{ should not give a hint, since we have 'override' }
function hash: NSUInteger; override;
end;
var
a: id;
begin
{ avoid warnings/hints about unused types/variables }
a:=TMyTestClass.alloc;
tmytestclass(a).Retain;
end.
|