return;
}
- if (!isa<VarDecl>(d) && !isFunctionOrMethod(d)) {
+ if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d)) {
S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
<< Attr.getName() << 2 /*variable and function*/;
return;
@end
@implementation Greeter
-+ (void) hello {
- printf("Hello, World!\n");
-}
++ (void) hello { printf("Hello, World!\n"); }
@end
-
int test1(void) {
[Greeter hello];
return 0;
}
-
-
@interface NSObject @end
@interface NSString : NSObject
- (int)length;
@"pointless example call for test purposes".length; // expected-warning {{property access result unused - getters should not have side effects}}
}
-
-
-
-
@interface foo
- (int)meth: (int)x: (int)y: (int)z ;
@end
(int)y: // expected-warning{{unused}}
(int) __attribute__((unused))z { return x; }
@end
+
+//===------------------------------------------------------------------------===
+// The next test shows how clang accepted attribute((unused)) on ObjC
+// instance variables, which GCC does not.
+//===------------------------------------------------------------------------===
+
+@interface TestUnusedIvar {
+ id x __attribute__((unused)); // no-warning
+}
+@end