Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
1f6efa3996dd1929fbc129203ce5009b620e6969
/
.
/
test
/
FrontendObjC
/
2009-02-05-VolatileProp.m
blob: 1deef739bee2a53125cdb1d9f8ddbc830f73cb5a [
file
] [
log
] [
blame
]
/* RUN: %llvmgcc -w -x objective-c -S %s -o /dev/null -pedantic-errors
rdar://6551276 */
void
foo
(
const
unsigned
short
*);
void
bar
()
{
unsigned
short
*
s
[
3
];
int
i
;
@try
{
}
@catch
(
id anException
)
{
}
foo
(
2
+
s
[
i
]);
}