// { dg-do assemble } // Copyright (C) 2000 Free Software Foundation // Contributed by Kriang Lerdsuwanakij // Bug: We used reject template unification of two bound template template // parameters. template class C { }; template void f(C c) { } template void f(C c) { } template class C, class T, class U> void g(C c) { } template class C, class T> void g(C c) { } int main() { C c1; f(c1); g(c1); C c2; f(c2); g(c2); }