comparison gcc/testsuite/g++.dg/cpp2a/range-for1.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 // P0614R1
2 // { dg-do compile { target c++11 } }
3 // { dg-options "" }
4
5 void
6 fn1 ()
7 {
8 int a[] = { 1, 2, 3, 4, 5 };
9
10 for (int i = 0; auto x : a) // { dg-warning "range-based .for. loops with initializer only available with" "" { target c++17_down } }
11 ++i;
12
13 int i;
14 for (i = 0; auto x : a) // { dg-warning "range-based .for. loops with initializer only available with" "" { target c++17_down } }
15 ++i;
16 }