blob: f0baa3033b236cdcae3d606eb0b9acc3c0bb0281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ %fail }
{ %target=darwin }
{ %cpu=powerpc,powerpc64,i386,x86_64,arm }
{$mode objfpc}
{$modeswitch objectivec1}
type
tc = objcclass(NSObject)
function test: ansistring; message 'test';
end;
procedure tc.test: ansistring;
begin
end;
begin
end.
|