Commit a39652f9 by Gabriel Dos Reis

dg-bogus

From-SVN: r44828
parent 644a7320
......@@ -17,7 +17,7 @@ struct Derived : Base {
int main()
{
Derived d;
X x = d.f();
X x = d.f(); // { dg-bogus "Y" "" }
}
......@@ -8,6 +8,7 @@ namespace N
class A { };
}
template class ::N::A<int>;
template class ::N::A<int>; // { dg-bogus ".*" "" }
......@@ -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;
};
......
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