593fcd5805a3e3e43fa56c03f6dc76df5ad7d8ce
[oota-llvm.git] / test / LLVMC / test_data / false.cpp
1 #include <stdio.h>
2
3 /* Make this invalid C++ */
4 typedef struct {
5     int i;
6     char c;
7 } a;
8
9 static a b = { .i = 65, .c = 'r'};
10
11 void test() {
12     b.i = 9;
13     fflush(stdout);
14     printf("el");
15 }
16