blob: 4fef84255a5612ffcfbe45b42b346b5766d233a2 [file] [log] [blame]
Daniel Dunbar82397132008-08-06 05:32:55 +00001// RUN: clang -emit-llvm -o - %s
2// PR2643
3
4void foo() {
5 struct {
6 int a : 1;
7 int b : 1;
8 } entry = {0};
9}
10