Sign in
ara-mdk
/
platform
/
external
/
llvm
/
8b477ed579794ba6d76915d56b3f448a7dd20120
/
.
/
test
/
FrontendObjC
/
2009-02-05-VolatileProp.m
blob: 461f92b51d2ca9f631138a6f9e77e2b997555382 [
file
] [
log
] [
blame
]
/* RUN: %llvmgcc -w -x objective-c -c %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
]);
}