pr22514.C: Move to...
authorJames A. Morrison <phython@gcc.gnu.org>
Fri, 12 Aug 2005 04:18:48 +0000 (04:18 +0000)
committerJames A. Morrison <phython@gcc.gnu.org>
Fri, 12 Aug 2005 04:18:48 +0000 (04:18 +0000)
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

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/pr22514.C [new file with mode: 0644]
gcc/testsuite/g++.dg/parse/pr22514.C [deleted file]

index 4c3652541a0fc27b5e728114a3e6ca071abeedbb..b8bce9b09394b07d94d7c744218fddd1c0e3825e 100644 (file)
@@ -1,3 +1,8 @@
+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
diff --git a/gcc/testsuite/g++.dg/debug/pr22514.C b/gcc/testsuite/g++.dg/debug/pr22514.C
new file mode 100644 (file)
index 0000000..23dc9b2
--- /dev/null
@@ -0,0 +1,13 @@
+/* { 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" } */
diff --git a/gcc/testsuite/g++.dg/parse/pr22514.C b/gcc/testsuite/g++.dg/parse/pr22514.C
deleted file mode 100644 (file)
index 23dc9b2..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { 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" } */