OSDN Git Service

dg-bogus
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Aug 2001 13:21:52 +0000 (13:21 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 12 Aug 2001 13:21:52 +0000 (13:21 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44828 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/g++.dg/lookup/using.C
gcc/testsuite/g++.dg/template/explicit-instantiation.C
gcc/testsuite/g++.dg/template/friend.C

index 2189d98..30e22c0 100644 (file)
@@ -17,7 +17,7 @@ struct Derived : Base {
 int main()
 {
   Derived d;
-  X x = d.f();
+  X x = d.f();                  // { dg-bogus "Y" "" }
 }
 
 
index 2830625..98a5ff0 100644 (file)
@@ -8,6 +8,7 @@ namespace N
   class A { };
 }
 
-template class ::N::A<int>;
+template class ::N::A<int>;     // { dg-bogus ".*" "" }
+
 
 
index 59564ad..c42d5dc 100644 (file)
@@ -18,7 +18,7 @@ struct s {
   struct t
   {
     friend ostream&
-    operator<<<T>(ostream&, const typename s<T>::t &);
+    operator<<<T>(ostream&, const typename s<T>::t &); // { dg-bogus ".*" "" }
   };
   t x;
 };