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.
|
// RUN: clang-import-test -x objective-c -objc-arc -import %S/Inputs/cleanup-objects.m -dump-ast -expression %s | FileCheck %s
|
|
|
|
// CHECK: FunctionDecl {{.*}} getObj '
|
|
// CHECK: ExprWithCleanups
|
|
// CHECK-NEXT: cleanup CompoundLiteralExpr
|
|
|
|
void test(int c, id a) {
|
|
(void)getObj(c, a);
|
|
}
|
|
|