brintos

brintos / llvm-project-archived public Read only

0
0
Text · 338 B · 06732e7 Raw
14 lines · c
1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5 6// CONFIG open rdar://67183997#include <Block.h>8 9void foo() {10    void (^bbb)(void)  = Block_copy(^ {11        int j, cnt;12    });13}14