Commit a39652f9 by Gabriel Dos Reis

dg-bogus

From-SVN: r44828
parent 644a7320
...@@ -17,7 +17,7 @@ struct Derived : Base { ...@@ -17,7 +17,7 @@ struct Derived : Base {
int main() int main()
{ {
Derived d; Derived d;
X x = d.f(); X x = d.f(); // { dg-bogus "Y" "" }
} }
...@@ -8,6 +8,7 @@ namespace N ...@@ -8,6 +8,7 @@ namespace N
class A { }; class A { };
} }
template class ::N::A<int>; template class ::N::A<int>; // { dg-bogus ".*" "" }
...@@ -18,7 +18,7 @@ struct s { ...@@ -18,7 +18,7 @@ struct s {
struct t struct t
{ {
friend ostream& friend ostream&
operator<<<T>(ostream&, const typename s<T>::t &); operator<<<T>(ostream&, const typename s<T>::t &); // { dg-bogus ".*" "" }
}; };
t x; t x;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment