[Sanitizer] Add rudimentary support for wide-character strings to scanf/printf interc...
[blocksruntime.git] / test / BlocksRuntime / c99.c
blob8f31ab3fdfb8c29bf7820b28a38355f6ecd6c261
1 //
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.
7 //
8 // c99.m
9 //
10 // CONFIG C99 rdar://problem/6399225
12 #import <stdio.h>
13 #import <stdlib.h>
15 int main(int argc, char *argv[]) {
16 void (^blockA)(void) = ^ { ; };
17 blockA();
18 printf("%s: success\n", argv[0]);
19 exit(0);