mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 03:29:57 +00:00
8fbe78f6fc
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
41 lines
751 B
Objective-C
41 lines
751 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct objc_class *Class;
|
|
typedef struct objc_object {
|
|
Class isa;
|
|
} *id;
|
|
id objc_getClass(const char *s);
|
|
|
|
@interface Object
|
|
+ self;
|
|
@end
|
|
|
|
@protocol Func
|
|
+ (void) class_func0;
|
|
- (void) instance_func0;
|
|
@end
|
|
|
|
@interface Derived: Object <Func>
|
|
@end
|
|
|
|
@interface Derived2: Object <Func>
|
|
@end
|
|
|
|
static void doSomething(Class <Func> unsupportedObjectType) {
|
|
[unsupportedObjectType class_func0];
|
|
}
|
|
|
|
static void doSomethingElse(id <Func> pleaseConvertToThisType) {
|
|
[pleaseConvertToThisType class_func0];
|
|
}
|
|
|
|
int main(int argv, char *argc[]) {
|
|
doSomething([Derived self]);
|
|
doSomething([Derived2 self]);
|
|
doSomethingElse([Derived self]);
|
|
doSomethingElse([Derived2 self]);
|
|
}
|
|
|