1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
7 + (void)prototypeWithScalar:(int)aParameter;
8 + (void)prototypeWithPointer:(void *)aParameter;
14 + (void)prototypeWithScalar:(const int)aParameter {}
15 + (void)prototypeWithPointer:(void * const)aParameter {}