OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / assign1.C
1 // PR c++/16623
2
3 template <int N>
4 struct C
5 {
6   C& operator= (int);
7 };
8
9 template <int N>
10 C<N>& C<N>::operator= (int)
11 {
12   return *this;
13 }
14
15 C<0> a;