[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenObjC / 2009-02-05-VolatileProp.m
blobd639fac50bb06f5f1efc810c92f42c810dcce006
1 // RUN: %clang -fexceptions -S -emit-llvm %s -o /dev/null -pedantic-errors
3 void foo(const unsigned short *);
4 void bar(void) {
5   unsigned short *s[3];
6   int i;
7   @try { } @catch (id anException) { }
8   foo(2+s[i]);