blob: 53acc58dfc44d8b964a01ae23bb3f793cb78add7 [file] [log] [blame]
// RUN: %clang_cc1 -fblocks -fsanitize=function -emit-llvm %s -o %t
void g(void (^)());
void f() {
__block int a = 0;
g(^() {
a++;
});
}