blob: bc80722febfb969afe238c898a128e92ce58ab14 [file] [log] [blame]
// RUN: clang -cc1 -fsyntax-only -verify %s
@interface I1 {
@private
int x;
struct {
unsigned int x : 3;
unsigned int y : 3;
} flags;
int y;
}
@end