repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
range-for19.C
blob
6afaee577f2326e08c7c3a75833fb9b5a3003c0b
1
// PR c++/49838
2
3
// { dg-do compile { target c++11 } }
4
5
int main()
6
{
7
auto a; // { dg-error "no initializer" }
8
for(auto i: a)
9
;
10
}