2005-08-11 James A. Morrison <phython@gcc.gnu.org>
* g++.dg/parse/pr22514.C: Move to...
* g++.dg/debug/pr22514.C: here.
From-SVN: r103016
+2005-08-11 James A. Morrison <phython@gcc.gnu.org>
+
+ * g++.dg/parse/pr22514.C: Move to...
+ * g++.dg/debug/pr22514.C: here.
+
2005-08-11 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/23266
--- /dev/null
+/* { dg-do compile } */
+namespace s
+{
+ template <int> struct _List_base
+ {
+ int _M_impl;
+ };
+ template<int i> struct list : _List_base<i>
+ {
+ using _List_base<i>::_M_impl;
+ }
+} /* { dg-error "expected unqualified-id before '\}'" } */
+s::list<1> OutputModuleListType; /* { dg-error "expected" } */
+++ /dev/null
-/* { dg-do compile } */
-namespace s
-{
- template <int> struct _List_base
- {
- int _M_impl;
- };
- template<int i> struct list : _List_base<i>
- {
- using _List_base<i>::_M_impl;
- }
-} /* { dg-error "expected unqualified-id before '\}'" } */
-s::list<1> OutputModuleListType; /* { dg-error "expected" } */