mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
9 lines
148 B
Text
9 lines
148 B
Text
// RUN: %clang_cc1 -fblocks -fsanitize=function -emit-llvm %s -o %t
|
|
|
|
void g(void (^)());
|
|
void f() {
|
|
__block int a = 0;
|
|
g(^() {
|
|
a++;
|
|
});
|
|
}
|