Fix the clang-wpa example.
[clang.git] / test / SemaObjC / interface-scope.m
blob0671dae61e821f9ece5942e9619725cb97af2dba
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
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;
12 @end