Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / assign1.C
blobd0e134a477b035a34cc1cf92b4e39da7985ac0f2
1 // PR c++/16623
3 template <int N>
4 struct C
6   C& operator= (int);
7 };
9 template <int N>
10 C<N>& C<N>::operator= (int)
12   return *this;
15 C<0> a;