Sign in
ara-mdk
/
platform
/
external
/
clang
/
f72663fc962c1c27a4793ebd3d2e3d81a4f4e984
/
.
/
test
/
Analysis
/
PR9741.cpp
blob: 2807c44ab7bc69a2349fee40e59841eff6613bfc [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -cc1 -std=c++11 -Wuninitialized -verify %s
// expected-no-diagnostics
void
f
()
{
int
a
[]
=
{
1
,
2
,
3
};
unsigned
int
u
=
0
;
for
(
auto
x
:
a
)
;
}