blob: 8f31ab3fdfb8c29bf7820b28a38355f6ecd6c261 [file] [log] [blame]
Blaine Garst86d0ba42010-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
7//
8// c99.m
9//
10// CONFIG C99 rdar://problem/6399225
11
12#import <stdio.h>
13#import <stdlib.h>
14
15int main(int argc, char *argv[]) {
16 void (^blockA)(void) = ^ { ; };
17 blockA();
18 printf("%s: success\n", argv[0]);
19 exit(0);
20}