xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/2009-02-05-VolatileProp.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang -fexceptions -S -emit-llvm %s -o /dev/null -pedantic-errors
2// rdar://6551276
3
4void foo(const unsigned short *);
5void bar() {
6  unsigned short *s[3];
7  int i;
8  @try { } @catch (id anException) { }
9  foo(2+s[i]);
10}
11