2014-08-27 02:13:47 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c11 -verify -Wno-objc-root-class %s
|
2008-03-31 08:36:02 +08:00
|
|
|
|
|
|
|
@interface Test {
|
|
|
|
int x;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) setX: (int) d;
|
|
|
|
@end
|
|
|
|
|
|
|
|
extern struct foo x;
|
|
|
|
|
|
|
|
@implementation Test
|
|
|
|
|
|
|
|
-(void) setX: (int) n {
|
|
|
|
x = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2010-04-20 03:10:40 +08:00
|
|
|
|
|
|
|
@interface Ivar
|
|
|
|
- (float*)method;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface A {
|
|
|
|
A *Ivar;
|
|
|
|
}
|
|
|
|
- (int*)method;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation A
|
|
|
|
- (int*)method {
|
2011-12-15 08:38:15 +08:00
|
|
|
int *ip = [Ivar method]; // expected-warning{{incompatible pointer types initializing 'int *' with an expression of type 'float *'}}
|
2010-04-20 03:10:40 +08:00
|
|
|
// Note that there is no warning in Objective-C++
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2011-04-25 23:05:41 +08:00
|
|
|
@interface TwoIvars {
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation TwoIvars
|
|
|
|
+ (int)classMethod {
|
|
|
|
return a + b; // expected-error{{instance variable 'a' accessed in class method}} \
|
|
|
|
// expected-error{{instance variable 'b' accessed in class method}}
|
|
|
|
}
|
|
|
|
@end
|
2011-10-22 02:03:52 +08:00
|
|
|
|
|
|
|
// rdar://10309454
|
|
|
|
@interface Radar10309454
|
|
|
|
{
|
|
|
|
int IVAR; // expected-note 4 {{previous definition is here}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Radar10309454()
|
|
|
|
{
|
|
|
|
int IVAR; // expected-error {{instance variable is already declared}}
|
|
|
|
int PIVAR; // expected-note {{previous definition is here}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Radar10309454()
|
|
|
|
{
|
|
|
|
int IVAR; // expected-error {{instance variable is already declared}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Radar10309454()
|
|
|
|
{
|
|
|
|
int IVAR; // expected-error {{instance variable is already declared}}
|
|
|
|
int PIVAR; // expected-error {{instance variable is already declared}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Radar10309454
|
|
|
|
{
|
|
|
|
int IVAR; // expected-error {{instance variable is already declared}}
|
|
|
|
}
|
|
|
|
@end
|
2013-06-01 05:51:12 +08:00
|
|
|
|
|
|
|
// PR5984
|
|
|
|
// rdar://14037151
|
|
|
|
@interface Radar14037151 {
|
|
|
|
int myStatus;
|
|
|
|
}
|
|
|
|
- (int) test;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Radar14037151
|
|
|
|
- (int) test
|
|
|
|
{
|
|
|
|
myStatus = 1; // works
|
|
|
|
__typeof(myStatus) __in; // works.
|
|
|
|
union U {
|
|
|
|
__typeof(myStatus) __in; // fails.
|
|
|
|
};
|
|
|
|
struct S {
|
|
|
|
__typeof(myStatus) __in; // fails.
|
2014-08-11 15:29:54 +08:00
|
|
|
struct S1 { // expected-warning {{declaration does not declare anything}}
|
2013-06-01 05:51:12 +08:00
|
|
|
__typeof(myStatus) __in; // fails.
|
2014-08-11 15:29:54 +08:00
|
|
|
struct S { // expected-warning {{declaration does not declare anything}}
|
2013-06-01 05:51:12 +08:00
|
|
|
__typeof(myStatus) __in; // fails.
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2013-06-27 06:10:27 +08:00
|
|
|
// rdar://14278560
|
|
|
|
@class NSString, NSData, NSNumber;
|
|
|
|
|
|
|
|
@interface NSObject
|
|
|
|
{
|
|
|
|
Class isa;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Foo
|
|
|
|
{
|
|
|
|
int a;
|
|
|
|
NSString* b;
|
|
|
|
NSData* c;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Bar : Foo
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Bar () {
|
|
|
|
NSString *q_strong;
|
|
|
|
NSNumber *r_strong;
|
|
|
|
int d; // expected-note {{previous definition is here}}
|
|
|
|
NSString *e_strong; // expected-note {{previous definition is here}}
|
|
|
|
NSData *f_weak; // expected-note {{previous definition is here}}
|
|
|
|
int g; // expected-note 2 {{previous definition is here}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Bar () {
|
|
|
|
int g; // expected-note {{previous definition is here}} \
|
|
|
|
// expected-error {{instance variable is already declared}}
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Bar {
|
|
|
|
int d; // expected-error {{instance variable is already declared}}
|
|
|
|
NSString *e_strong; // expected-error {{instance variable is already declared}}
|
|
|
|
NSData *f_weak; // expected-error {{instance variable is already declared}}
|
|
|
|
NSData *g; // expected-error 2 {{instance variable is already declared}}
|
|
|
|
}
|
|
|
|
@end
|