1 // RUN: %clang_cc1 -fsyntax-only -verify %s
6 + (void)prototypeWithScalar:(int)aParameter;
7 + (void)prototypeWithPointer:(void *)aParameter;
13 + (void)prototypeWithScalar:(const int)aParameter {}
14 + (void)prototypeWithPointer:(void * const)aParameter {}