freebsd-dev/test/CodeGen/kr-style-block.c
2009-06-02 17:58:47 +00:00

11 lines
103 B
C

// RUN: clang-cc -emit-llvm %s -o %t -fblocks
void foo (void(^)());
int main()
{
foo(
^() { }
);
}