up
From-SVN: r23131
This commit is contained in:
parent
a39f6bb0fd
commit
4c37d70429
@ -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;
|
||||
}
|
||||
|
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user