URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [nullptr03.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 intconst int n1 = nullptr; // { dg-error "cannot convert " }decltype(nullptr) mynull = 0;const int n2 = mynull; // { dg-error "cannot convert " }
Go to most recent revision | Compare with Previous | Blame | View Log
