blob: e7a8df62394733ed59ef1f511998597c42438a03 [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 %s -emit-llvm -o -
2
3
4enum {
5 tA = 0,
6 tB = 1
7};
8
9struct MyStruct {
10 unsigned long A;
11 void * B;
12};
13
14void bar(){
15struct MyStruct MS = { tB, 0 };
16}