Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 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 |