comparison gcc/testsuite/g++.dg/concepts/req15.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 // PR c++/66832 1 // PR c++/66832
2 // { dg-options "-std=c++17 -fconcepts" } 2 // { dg-do compile { target c++17 } }
3 // { dg-options "-fconcepts" }
3 4
4 template <class T, class U, unsigned N> 5 template <class T, class U, unsigned N>
5 requires requires (T& t, U &u) { t.foo(); u.foo(); } 6 requires requires (T& t, U &u) { t.foo(); u.foo(); }
6 void foo_all( T (&t)[N], U (&u)[N] ) { 7 void foo_all( T (&t)[N], U (&u)[N] ) {
7 for(auto& x : t) 8 for(auto& x : t)