Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -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 |