blob: b4dfff683bb123e9ed979d14a740e7ffe455a383 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregor72de6672009-01-08 20:45:30 +00002
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