comparison gcc/testsuite/g++.dg/cpp2a/range-for13.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 T>
6 void foo ()
7 {
8 int a[] = { 1, 2, 3, 4, 5 };
9
10 for (T i = 1; auto x : a)
11 if (i++ != x)
12 __builtin_abort ();
13
14 T i;
15 for (i = 1; auto x : a)
16 if (i++ != x)
17 __builtin_abort ();
18
19 i = 0;
20 for (i++; auto x : a)
21 if (i != 1)
22 __builtin_abort ();
23
24 for (T s[] = { 1, 1, 1 }; auto x : s)
25 if (x != 1)
26 __builtin_abort ();
27 }
28
29 int
30 main ()
31 {
32 foo<int>();
33 }