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