]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
memconst.C: Use old-deja, not dg, error markers.
authorMark Mitchell <mark@codesourcery.com>
Tue, 10 Dec 2002 14:46:32 +0000 (14:46 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 10 Dec 2002 14:46:32 +0000 (14:46 +0000)
* g++.old-deja/g++.ext/memconst.C: Use old-deja, not dg, error
markers.

From-SVN: r59998

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

index 680aa38d88bf1746663b7f85f87956ea71497a39..2e3eadce5908df6218db1c5861318297718950e3 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..deb832f7fd130947c114344fcfa33572d7eec719 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 - 
 }