1*67e74705SXin Li// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s 2*67e74705SXin Li// expected-no-diagnostics 3*67e74705SXin Li// radar 7211563 4*67e74705SXin Li 5*67e74705SXin Li@interface X 6*67e74705SXin Li 7*67e74705SXin Li+ (void)prototypeWithScalar:(int)aParameter; 8*67e74705SXin Li+ (void)prototypeWithPointer:(void *)aParameter; 9*67e74705SXin Li 10*67e74705SXin Li@end 11*67e74705SXin Li 12*67e74705SXin Li@implementation X 13*67e74705SXin Li 14*67e74705SXin Li+ (void)prototypeWithScalar:(const int)aParameter {} 15*67e74705SXin Li+ (void)prototypeWithPointer:(void * const)aParameter {} 16*67e74705SXin Li 17*67e74705SXin Li@end 18