Teach TreeTransform how to transform a pack expansion type into
[clang.git] / test / CodeGenCXX / block-destruct.cpp
blobf809ca2699dea98afd9c87657cb5f35569570bec
1 // RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
3 struct A { ~A(); };
5 void f() {
6 __block A a;
9 // CHECK: call void @_ZN1AD1Ev