aboutsummaryrefslogtreecommitdiff
path: root/clang/test/InterfaceStubs/blocks.c
blob: 1d8651e39ccc989143730b4e3e30d03b9c539fc5 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-interface-stubs -fblocks -o - %s | FileCheck %s

// CHECK: --- !ifs-v1
// CHECK-NEXT: IfsVersion: 3.0
// CHECK-NEXT: Target:
// CHECK-NEXT: Symbols:
// CHECK-NEXT: ...
static void (^f)(void*) = ^(void* data) { int i; };