
- 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
31 lines
383 B
Objective-C
31 lines
383 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface B
|
|
+(int) classGetter;
|
|
-(int) getter;
|
|
@end
|
|
|
|
@interface A : B
|
|
@end
|
|
|
|
@implementation A
|
|
+(int) classGetter {
|
|
return 0;
|
|
}
|
|
|
|
+(int) classGetter2 {
|
|
return super.classGetter;
|
|
}
|
|
|
|
-(void) method {
|
|
int x = super.getter;
|
|
}
|
|
@end
|
|
|
|
void f0() {
|
|
// FIXME: not implemented yet.
|
|
//int l1 = A.classGetter;
|
|
int l2 = [A classGetter2];
|
|
}
|
|
|