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]);
}