Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 typedef struct {
      3         int a; int : 24; char b;
      4 } S;
      5 
      6 S a = { 1, 2 };
      7