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.
15 lines
433 B
15 lines
433 B
// RUN: %clang_cc1 -triple i686--windows-msvc -fexceptions -fobjc-exceptions -ast-dump %s 2>&1 | FileCheck %s
|
|
// RUN: %clang_cc1 -triple x86_64--windows-msvc -fexceptions -fobjc-exceptions -ast-dump %s 2>&1 | FileCheck %s
|
|
|
|
void f() {
|
|
@try {
|
|
} @finally {
|
|
}
|
|
}
|
|
|
|
// CHECK: ObjCAtFinallyStmt
|
|
// CHECK-NEXT: CapturedStmt
|
|
// CHECK-NEXT: CapturedDecl
|
|
// CHECK-NEXT: CompoundStmt
|
|
// CHECK-NEXT: ImplicitParamDecl
|