repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
PR10458.cpp
blob
57588ebcf1f02a3ec279334d45fb4cdad71fad99
1
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98
2
3
void
f
() {
4
int
arr
[] = {
1
,
2
,
3
};
5
for
(
auto
&
i
:
arr
) {
// expected-warning {{'auto' type specifier is a C++11 extension}} expected-warning {{range-based for loop is a C++11 extension}}
6
}
7
}