1 //===----------------------------------------------------------------------===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 9 // test bad_alloc 10 11 #include <new> 12 #include <cassert> 13 #include <exception> 14 #include <type_traits> 15 16 #include "test_macros.h" 17 18 int main(int, char**) 19 { 20 static_assert((std::is_base_of<std::exception, std::bad_alloc>::value), 21 "std::is_base_of<std::exception, std::bad_alloc>::value"); 22 static_assert(std::is_polymorphic<std::bad_alloc>::value, 23 "std::is_polymorphic<std::bad_alloc>::value"); 24 std::bad_alloc b; 25 std::bad_alloc b2 = b; 26 b2 = b; 27 const char* w = b2.what(); 28 assert(w); 29 30 return 0; 31 } 32