URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [pm3.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/12218
// { dg-do run }
struct C { int i, j; };
typedef int C::*mPtr;
extern const mPtr should_be_0 = &C::i;
extern const mPtr should_be_4 = &C::j;
int main () {
}
Go to most recent revision | Compare with Previous | Blame | View Log