memconst.C: Use old-deja, not dg, error markers.
authorMark Mitchell <mark@codesourcery.com>
Tue, 10 Dec 2002 14:45:48 +0000 (14:45 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 10 Dec 2002 14:45:48 +0000 (14:45 +0000)
* g++.old-deja/g++.ext/memconst.C: Use old-deja, not dg, error
markers.

From-SVN: r59997

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ext/memconst.C

index a1b766c092144f97ccddad8cb4bd09d002dad301..4b064472d42b603a1477c1cd97251351625aef5c 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-10  Mark Mitchell  <mark@codesourcery.com>
+
+       * g++.old-deja/g++.ext/memconst.C: Use old-deja, not dg, error
+       markers.
+
 2002-12-10  Jakub Jelinek  <jakub@redhat.com>
 
        * g++.dg/parse/parameter-declaration-1.C: Expect error on last line.
index a47a45ca8f6a712fa06d7d77c78637b7b8e21ea5..568f267d52e87cf0c4a3a3167b22969850b02025 100644 (file)
@@ -12,7 +12,7 @@ public:
 
 class foo {
 private:
-  static const unsigned char * const dummy_key = (unsigned char*)"ThisIs a dummy!"; // { dg-error "in-class" }
+  static const unsigned char * const dummy_key = (unsigned char*)"ThisIs a dummy!"; // ERROR - 
 
 public:
     void bar ();
@@ -21,5 +21,5 @@ public:
 void
 foo::bar ()
 {
-    qwerty QWERTY ((unsigned short*)dummy_key);
+    qwerty QWERTY ((unsigned short*)dummy_key); // ERROR - 
 }