[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaObjC / interface-scope.m
blob9875eca5bf16e6ff844687c9b1a39647a5c9087d
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 @interface I1 {
5 @private
6   int x;
7   struct {
8     unsigned int x : 3;
9     unsigned int y : 3;
10   } flags;
11   int y;
13 @end