1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
16 lines
244 B
Objective-C
16 lines
244 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi %s -o -
|
|
|
|
typedef struct _NSPoint {
|
|
float x;
|
|
float y;
|
|
} NSPoint;
|
|
|
|
@interface Intf
|
|
- (void) MyMeth : (NSPoint) Arg1;
|
|
@end
|
|
|
|
@implementation Intf
|
|
- (void) MyMeth : (NSPoint) Arg1{}
|
|
@end
|
|
|