(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
sc1.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
}