1// { dg-do compile }
2// { dg-options "-fno-rtti" }
3
4struct B { };
5
6void f(B* bp)
7{
8  bp =
9#ifndef __GXX_RTTI
10  static_cast<B*>(0);
11#endif
12}
13