blob: 3bd4dba545f5393e38a51b40c42a6a5a3ccd3491 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
// radar 7211563
@interface X
+ (void)prototypeWithScalar:(int)aParameter;
+ (void)prototypeWithPointer:(void *)aParameter;
@end
@implementation X
+ (void)prototypeWithScalar:(const int)aParameter {}
+ (void)prototypeWithPointer:(void * const)aParameter {}
@end