comparison gcc/testsuite/g++.dg/cpp2a/range-for11.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // PR c++/87152
2 // { dg-do run }
3 // { dg-options "-std=c++2a" }
4
5 template<typename>
6 int foo ()
7 {
8 int a[] = { 1, 2, 3, 4, 5 };
9 int j = 0;
10 for (int i = 0; auto x : a)
11 j += i++;
12
13 return j;
14 }
15
16 int
17 main ()
18 {
19 int j = foo<int>();
20 if (j != 10)
21 __builtin_abort ();
22 }