mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 16:09:46 -04:00
10 lines
172 B
C++
10 lines
172 B
C++
// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A { ~A(); };
|
|
|
|
void f() {
|
|
__block A a;
|
|
}
|
|
|
|
// CHECK: call void @_ZN1AD1Ev
|