1 // RUN: %clang_cc1 -fsyntax-only -fobjc-arc -fobjc-runtime-has-weak -Wsuper-class-method-mismatch -verify %s
2 // expected-no-diagnostics
8 @property (nonatomic) NSString *thingy;
9 @property () __weak id PROP;
12 @interface Sub : Super
16 - (void)setThingy:(NSString *)val
18 [super setThingy:val];