rt_gccstream/gcc/testsuite/g++.old-deja/g++.robertl/eb48.C

11 lines
149 B
C

// { dg-do assemble }
char *t1 (const char *s)
{
return const_cast<char *>(s);
}
char *&t1 (const char *&s)
{
return const_cast<char *&>(s);
}