This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [C++ Patch / RFC] PR 50870


... forgot the testcase, sorry.

Paolo.

//////////////////////
// PR c++/50870
// { dg-options "-std=gnu++0x" }

template <class V>
  struct impl
  {
    template <class T> static T create();
  };

template <class T, class U, class V, class
	  = decltype(impl<V>::template create<T>()
		     -> impl<V>::template create<U>())>
struct tester { };

tester<impl<float>*, int, float> ti;

template <class T, class U, class V, class
	  = decltype(impl<V>::template create<T>()
		     -> impl<V>::template create<U>())>
int test() { return 0; }

int i = test<impl<float>*, int, float>();

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]