* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-friend-3.C
blobaec38eb68ff83b756c9b3ee22fcbfa031b05212e
1 // PR c++/65977
2 // { dg-do compile { target c++11 } }
4 template<__SIZE_TYPE__>
5 class bitset;
7 template<__SIZE_TYPE__ N>
8 constexpr bool operator==(const bitset<N>&, const bitset<N>&) noexcept;
10 template<__SIZE_TYPE__ N>
11 class bitset
13   friend constexpr bool operator== <>(const bitset<N>&,
14                                       const bitset<N>&) noexcept;
17 template<__SIZE_TYPE__ N>
18 constexpr bool operator==(const bitset<N>&, const bitset<N>&) noexcept
20   return true;