revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / LLVMC / test_data / false.cpp
blobd3a7102f8ccab3214908ace935f08e7ec9bfd24c
1 /* RUN: ignore */
2 #include <stdio.h>
4 /* Make this invalid C++ */
5 typedef struct {
6 int i;
7 char c;
8 } a;
10 static a b = { .i = 65, .c = 'r'};
12 void test() {
13 b.i = 9;
14 fflush(stdout);
15 printf("el");