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-exception
9 // CONFIG rdar://6225809
12 int main(int argc
, char *argv
[]) {
14 int* ap
= &a
; // just to keep the address on the stack.
17 //a; // workaround, a should be implicitly imported
26 printf("**** __block heap storage should have been created at this point\n");
29 printf("%s: Success\n", argv
[0]);