aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp42.C
blob: 3c11dd4229c560f8214d760c4236a74950c2513f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Build don't run:
// GROUPS passed templates membertemplates
template<class T, int N>
class Foo {

public:
    template<int N2>
    Foo<T,N> operator=(const Foo<T,N2>& z)
    {
        return Foo<T,N>();
    }
};

int main()
{
    Foo<double,4> x;
    Foo<double,7> y;
    x = y;

    return 0;
}