mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 00:55:38 +08:00
XFAIL
From-SVN: r44851
This commit is contained in:
parent
160fb9bc16
commit
2263345095
@ -17,7 +17,7 @@ struct Derived : Base {
|
||||
int main()
|
||||
{
|
||||
Derived d;
|
||||
X x = d.f(); // { dg-bogus "Y" "" }
|
||||
X x = d.f(); // { dg-bogus "Y" "" { xfail *-*-* } }
|
||||
}
|
||||
|
||||
|
||||
|
@ -4,6 +4,6 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
( int() > int() ); // { dg-bogus "parse" "" }
|
||||
( int() > int() ); // { dg-bogus "parse" "" { xfail *-*-* } }
|
||||
return 0;
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ namespace N
|
||||
class A { };
|
||||
}
|
||||
|
||||
template class ::N::A<int>; // { dg-bogus ".*" "" }
|
||||
template class ::N::A<int>; // { dg-bogus ".*" "" { xfail *-*-* } }
|
||||
|
||||
|
||||
|
||||
|
@ -18,7 +18,7 @@ struct s {
|
||||
struct t
|
||||
{
|
||||
friend ostream&
|
||||
operator<<<T>(ostream&, const typename s<T>::t &); // { dg-bogus ".*" "" }
|
||||
operator<<<T>(ostream&, const typename s<T>::t &); // { dg-bogus ".*" "" { xfail *-*-* } }
|
||||
};
|
||||
t x;
|
||||
};
|
||||
|
@ -12,6 +12,6 @@ struct Derived : Base<T> {
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
Derived<T>::Derived() : Base(4) { } // { dg-error "field" "" }
|
||||
Derived<T>::Derived() : Base(4) { } // { dg-error "have any field" "" }
|
||||
|
||||
|
||||
|
@ -7,7 +7,7 @@ foo1()
|
||||
{
|
||||
static int empty;
|
||||
const int* x = bar();
|
||||
return (x ? *x : empty); // { dg-bogus ".*" "" }
|
||||
return (x ? *x : empty); // { dg-bogus ".*" "" { xfail *-*-* } }
|
||||
}
|
||||
|
||||
const int&
|
||||
|
Loading…
Reference in New Issue
Block a user