bolt/deps/llvm-18.1.8/clang/test/CodeGenObjC/2009-02-05-VolatileProp.m
2025-02-14 19:21:04 +01:00

9 lines
216 B
Objective-C

// RUN: %clang -fexceptions -S -emit-llvm %s -o /dev/null -pedantic-errors
void foo(const unsigned short *);
void bar(void) {
unsigned short *s[3];
int i;
@try { } @catch (id anException) { }
foo(2+s[i]);
}