URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [crash-7.C] - Rev 316
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: PR c++/42336
// { dg-options "-std=c++0x -O2 -g" }
// { dg-do compile }
struct X {
void func() {}
};
template<typename T, void (X::*P)() = &T::func>
void b(T) {}
int main() {
b(X()); /* line 9 */
X().func();
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log