URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr137.C] - Rev 844
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR137: static_cast of cv void*
struct A;
const void* v;
void foo(void)
{
(void)static_cast<const volatile A *>(v);
(void)static_cast<A *>(v); // { dg-error "" "static_cast cannot remove cv qualifiers" }
}
Go to most recent revision | Compare with Previous | Blame | View Log