2015-04-30 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/59955
* g++.dg/template/crash121.C: New.
From-SVN: r222612
+2015-04-30 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/59955
+ * g++.dg/template/crash121.C: New.
+
2015-04-29 Petar Jovanovic <petar.jovanovic@rt-rk.com>
* gcc.target/mips/call-from-init.c: New test.
--- /dev/null
+// PR c++/59955
+
+template< int xyz >
+struct wovo {
+
+ template< int n >
+ void us(){}
+
+ template< int n >
+ struct us< n > {}; // { dg-error "template|conflicts" }
+};