summaryrefslogtreecommitdiff
path: root/tests/test/uobjc35d.pp
blob: 8b2116ff71621bb381df153429dba63855d14007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ Written by Jonas Maebe in 2010, released into the public domain }

{$mode objfpc}
{$modeswitch objectivec1}

unit uobjc35d;

interface

type
  MyExternalClass = objcclass external;

  MyClass = objcclass(NSObject)
    ff: MyExternalClass
  end;

implementation

end.