Home | History | Annotate | Download | only in tests
      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.
      6 
      7 //
      8 //  c99.m
      9 //
     10 // CONFIG C99 rdar://problem/6399225
     11 
     12 #import <stdio.h>
     13 #import <stdlib.h>
     14 
     15 int main(int argc, char *argv[]) {
     16     void (^blockA)(void) = ^ { ; };
     17     blockA();
     18     printf("%s: success\n", argv[0]);
     19     exit(0);
     20 }
     21