* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-59361.C
blob519ae35dda9526e7a512a8347e3eeb9c65dec9a4
1 // PR c++/59361
2 // { dg-do compile { target c++11 } }
4 template<bool ...Bs>
5 struct and_ 
7   constexpr static bool value{true};
8 };
10 template<typename T>
11 struct true_
13   constexpr operator bool() const { return true; }
16 template<typename ...Ts>
17 constexpr bool foo(Ts...)
19   return and_<(true_<Ts>())...>::value;