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