Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
llvm-project
/
clang
/
test
/
SemaCXX
/
warn-unsequenced-cxx17.cpp
blob: 3c221fb8d65600be47e0ba857ca5c8057a9c09c5 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++17 -Wno-unused %s
void
test
()
{
int
xs
[
10
];
int
*
p
=
xs
;
// expected-no-diagnostics
p
[(
long
long
unsigned
)(
p
=
0
)];
// ok
}