blob: 41731711867f5f162f2d11aa872acc4ff9dd4550 [file] [log] [blame]
// { dg-do link }
// GROUPS passed templates membertemplates
template<class T, int N>
class A
{
public:
template<class U>
void operator=(A<U, N> const & a) { return; }
};
int main()
{
A<float, 3> a;
A<double, 3> b;
a = b;
}