PR c++/64398
* g++.dg/cpp0x/decltype62.C: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221174
138bc75d-0d04-0410-961f-
82ee72b054a4
+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>;