diff options
Diffstat (limited to 'test/FrontendObjC/2009-02-05-VolatileProp.m')
-rw-r--r-- | test/FrontendObjC/2009-02-05-VolatileProp.m | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendObjC/2009-02-05-VolatileProp.m b/test/FrontendObjC/2009-02-05-VolatileProp.m deleted file mode 100644 index 1deef73..0000000 --- a/test/FrontendObjC/2009-02-05-VolatileProp.m +++ /dev/null @@ -1,11 +0,0 @@ -/* RUN: %llvmgcc -w -x objective-c -S %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]); -} - |