view gcc/testsuite/g++.old-deja/g++.pt/overload1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { dg-do run  }
template <class T> struct B { };

template <class T> struct A {
  template <class U, class V> int operator () (U u, V v);
  template <class U, class V> void operator () (B<U> u, B<V> v) { }
};

int
main ()
{
  A<int> a;
  B<char> b1;
  B<short> b2;
  a (b1, b2);
}