URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nullptr05.C] - Rev 749
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }// { dg-options "-std=c++0x" }// Test assignment to method pointerclass F { };typedef void (F::*pmf)();const pmf pmf1 = nullptr;const pmf pmf2 = __null;const pmf pmf3 = 0;decltype(nullptr) mynull = 0;const pmf pmf4 = mynull;
Go to most recent revision | Compare with Previous | Blame | View Log
