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