Commit fccef71e by Kriang Lerdsuwanakij Committed by Kriang Lerdsuwanakij

* pt.c (unify): Handle SCOPE_REF.

From-SVN: r46715
parent ae31824c
2001-11-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* pt.c (unify): Handle SCOPE_REF.
2001-11-01 Jakub Jelinek <jakub@redhat.com>
* tree.c (cp_copy_res_decl_for_inlining): Adjust
......
......@@ -8566,6 +8566,7 @@ unify (tparms, targs, parm, arg, strict)
switch (TREE_CODE (parm))
{
case TYPENAME_TYPE:
case SCOPE_REF:
case UNBOUND_CLASS_TEMPLATE:
/* In a type which contains a nested-name-specifier, template
argument values cannot be deduced for template parameters used
......
// 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>();}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment