blob: 562d5a5cc41876a2ed033ee7ef0b60c1c4c2cc43 [file] [log] [blame]
Blaine Garstbe67b4a2010-08-04 23:34:21 +00001//
2// The LLVM Compiler Infrastructure
3//
4// This file is distributed under the University of Illinois Open Source
5// License. See LICENSE.TXT for details.
6#include <stdio.h>
7
8// CONFIG
9
10int AGlobal;
11
12int main(int argc, char *argv[]) {
13 void (^f)(void) = ^ { AGlobal++; };
14
15 printf("%s: success\n", argv[0]);
16 return 0;
17
18}