PR c++/13744
* g++.dg/inherit/local3.C: New test.
From-SVN: r98082
+2005-04-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
+
+ PR c++/13744
+ * g++.dg/inherit/local3.C: New test.
+
2005-04-12 Jeff Law <law@redhat.com>
* gcc.dg/tree-ssa/20050412-1.c: New test.
--- /dev/null
+// PR c++/13744 (ice-on-valid-code)
+// Origin: Thom Harp <thomharp@charter.net>
+
+// { dg-do compile }
+
+template<int> void foo()
+{
+ struct A
+ {
+ virtual void bar() { A a(*this); }
+ } a;
+}
+
+template void foo<0>();