rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/sc1.C

11 lines
220 B
C

// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
void f() {
int *i = 0;
const int *c = 0;
static_cast <const int *>(i);
static_cast <int *>(c); // { dg-error "" } casts away constness
}