OSDN Git Service

PR c++/28687
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / rtti / no-rtti-voidptr.C
1 // { dg-do compile }
2 // { dg-options "-fno-rtti" }
3
4 // PR C++/28687
5
6 struct A {
7   virtual ~A() { }
8 };
9
10 struct B : A {
11 };
12
13 A* f()
14 {
15   return new B();
16 }
17
18 int main()
19 {
20   void* b = dynamic_cast<void*>(f());
21 }