1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-exceptions
13 // Test taken from 5.2.8.2
14 // When typeid is applied to a glvalue expression whose type is a polymorphic
15 // class type, (10.3), the result refers to a std::type_info object
16 // representing the type of the most derived object (1.8) (that is, the
17 // dynamic type) to which the glvalue refers. If the glvalue expression is
18 // obtained by applying the unary * operator to a pointer(68) and the pointer
19 // is a null pointer value (4.10), the typeid expression throws the
20 // std::bad_typeid exception (18.7.3).
22 // 68) If p is an expression of pointer type, then *p, (*p), *(p),
23 // ((*p)), *((p)), and so on all meet this requirement.
24 bool bad_typeid_test () {
25 class A
{ virtual void f() {}};
26 class B
{ virtual void g() {}};
29 try {bool b
= typeid(*bp
) == typeid (A
); ((void)b
); }
30 catch ( const std::bad_typeid
&) { return true; }
35 // The value of a failed cast to pointer type is the null pointer value of
36 // the required result type. A failed cast to reference type throws
37 // std::bad_cast (18.7.2).
38 bool bad_cast_test () {
39 class A
{ virtual void f() {}};
40 class B
{ virtual void g() {}};
41 class D
: public virtual A
, private B
{};
44 B
*bp
= (B
*)&d
; // cast needed to break protection
45 try { D
&dr
= dynamic_cast<D
&> (*bp
); ((void)dr
); }
46 catch ( const std::bad_cast
& ) { return true; }
53 if ( !bad_typeid_test ()) {
57 if ( !bad_cast_test ()) {