]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
crash11.C: Put the dg options in comments.
authorAndrew Pinski <pinskia@physics.uc.edu>
Fri, 8 Aug 2003 19:54:14 +0000 (19:54 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Fri, 8 Aug 2003 19:54:14 +0000 (12:54 -0700)
2003-08-08  Andrew Pinski  <pinskia@physics.uc.edu>

        * g++.dg/parse/crash11.C: Put the dg options in comments.

From-SVN: r70254

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/crash11.C

index d1ba048adbbaf4d8da1fcbabf9eece36ca6d8643..a536a70b44a7f78b4ee031694ddb3b48905f431a 100644 (file)
@@ -1,3 +1,7 @@
+2003-08-08  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * g++.dg/parse/crash11.C: Put the dg options in comments.
+
 2003-08-08  Neil Booth  <neil@daikokuya.co.uk>
 
        * lib/gcc-dg.exp: Update for diagnostic change.
index 8e6c73b1e9c24546251f82b2cb059adbdd408703..4893678d46f27d02a9344f7cc46ab75acc573b20 100644 (file)
@@ -20,7 +20,7 @@ struct B
   struct Template
   {
     typedef typename A<A<TP>::Template>
-      ::template Template<T>::Type Type; { dg-error "mismatch|class template|unqualified-id" }
+      ::template Template<T>::Type Type; // { dg-error "mismatch|class template|unqualified-id" }
   };
 };
 template <typename T>
@@ -30,5 +30,5 @@ struct C
 };
 int main()
 {
-  typedef B<C>::Template<void>::Type Type; { dg-error "init-declarator|;" }
+  typedef B<C>::Template<void>::Type Type; // { dg-error "init-declarator|;" }
 }