[NFC] Maintainers.rst: align email address formatting
[llvm-project.git] / clang / test / SemaObjC / interface-layout.m
blob9b083b0154e1077db6c98776f824c78a67889db1
1 // RUN: %clang_cc1 %s -fsyntax-only -verify  -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5
2 // expected-no-diagnostics
3 typedef struct objc_object {} *id;
4 typedef signed char BOOL;
5 typedef unsigned int NSUInteger;
6 typedef struct _NSZone NSZone;
8 @protocol NSObject
9 - (BOOL) isEqual:(id) object;
10 @end
12 @protocol NSCopying
13 - (id) copyWithZone:(NSZone *) zone;
14 @end
16 @interface NSObject < NSObject > {}
17 @end
19 extern id NSAllocateObject (Class aClass, NSUInteger extraBytes, NSZone * zone);
21 @interface MyClassBase : NSObject < NSCopying > {}
22 @end
24 @interface MyClassDirectNode : MyClassBase < NSCopying >
26   @public NSUInteger attributeRuns[((1024 - 16 - sizeof (MyClassBase)) / (sizeof (NSUInteger) + sizeof (void *)))];
28 @end