mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
15 lines
207 B
ObjectPascal
15 lines
207 B
ObjectPascal
{ %target=darwin }
|
|
{ %cpu=powerpc,powerpc64,i386,x86_64,arm,aarch64 }
|
|
{ %norun }
|
|
{$modeswitch objectivec1}
|
|
|
|
type
|
|
MyClass = objcclass (NSObject)
|
|
_rec: record
|
|
mask: MyClass;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
end.
|