2015-03-04 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/64398
* g++.dg/cpp0x/decltype62.C: New.
From-SVN: r221174
+2015-03-04 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/64398
+ * g++.dg/cpp0x/decltype62.C: New.
+
2015-03-03 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/object_overflow5.adb: New test.
--- /dev/null
+// PR c++/64398
+// { dg-do compile { target c++11 } }
+
+template<typename T> struct template1;
+
+template<typename T, typename> // second param required
+struct struct1{
+ using type1 = decltype(T::x);
+ using type2 = template1<type1>;
+};
+
+template<typename T> using alias1 = template1<decltype(T::x)>;
+
+// just for instantiation:
+template<typename T> using alias2 = alias1<T>;