repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
interface-scope.m
blob
9875eca5bf16e6ff844687c9b1a39647a5c9087d
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
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;
12
}
13
@end