aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/unify3.C
blob: 190a0cb95f7db46f44dccfca3d0dc4eb50acd878 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Test unifying SCOPE_REF.
// Origin: Marc Duflot <m.duflot@ulg.ac.be>
// { dg-do compile }

template <int n> class A {};
template <int m> class R {};

template <int n> struct Trait { enum {m = n}; };

template <int n> R<Trait<n>::m> f(A<n>);
template <> R<1> f(A<1>) {return R<1>();}