blob: 14ab15c52c8d42842117ea8ff58dd7a9206176f9 [file] [log] [blame]
/* Test if caught exception objects are accessible inside the
@catch block. (Yes, I managed to break this.) */
/* Author: Ziemowit Laski <zlaski@apple.com> */
/* { dg-do compile } */
/* { dg-options "-fobjc-exceptions" } */
/* APPLE LOCAL radar 4894756 */
#include "../objc/execute/Object2.h"
const char *foo(void)
{
@try {
return "foo";
}
@catch (Object* theException) {
return [theException name];
}
}