1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 3 @interface I1 { 4 @private 5 int x; 6 struct { 7 unsigned int x : 3; 8 unsigned int y : 3; 9 } flags; 10 int y; 11 } 12 @end 13