From-SVN: r23131
This commit is contained in:
Jason Merrill 1998-10-16 07:38:35 -04:00
parent a39f6bb0fd
commit 4c37d70429
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
main()
{
int &ir = s.i;
int *ip = &s.i;// ERROR - .* , XFAIL *-*-*
int &ir = s.i; // ERROR - address of bitfield
int *ip = &s.i; // ERROR - address of bitfield
ir = 10;
}

View File

@ -41,7 +41,7 @@ void struct0::function_member ()
i = this->*dmp; // perfectly legal - for both cfront and g++
i = (*fmp) (); // ERROR -
i = *dmp; // ERROR - , XFAIL *-*-*
i = *dmp; // ERROR -
}
int main () { return 0; }