blob: 79326a7e4b281ef8d6c5379afb1837340e27d3f9 [file] [log] [blame]
Raphael Isemannc705bb82018-08-20 16:20:01 +00001struct A {
2 virtual ~A() {}
3};
4struct B : public A {};
5
6void f() {
7 const A *b = new B();
8 const B *c1 = dynamic_cast<const B *>(b);
9 const B *c2 = static_cast<const B *>(b);
10 const B *c3 = reinterpret_cast<const B *>(b);
11 A *c4 = const_cast<A *>(b);
12}