You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
288 B
12 lines
288 B
4 months ago
|
// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin11 -fsyntax-only -verify %s
|
||
|
|
||
|
@interface NSException @end
|
||
|
|
||
|
namespace test0 {
|
||
|
void test() {
|
||
|
try {
|
||
|
} catch (NSException e) { // expected-error {{cannot catch an Objective-C object by value}}
|
||
|
}
|
||
|
}
|
||
|
}
|