[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / no-warn-qual-mismatch.m
blob1b5f184ae063c14c69e1d440048add34cc75e257
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
2 // radar 7211563
4 @interface X
6 + (void)prototypeWithScalar:(int)aParameter;
7 + (void)prototypeWithPointer:(void *)aParameter;
9 @end
11 @implementation X
13 + (void)prototypeWithScalar:(const int)aParameter {}
14 + (void)prototypeWithPointer:(void * const)aParameter {}
16 @end