| //===----------------------------------------------------------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // UNSUPPORTED: no-exceptions |
| // We're testing the diagnosed behaviour here. |
| // ADDITIONAL_COMPILE_FLAGS: -Wno-exceptions |
| void func() TEST_NOEXCEPT { |
| void terminate_handler() { |
| assert(std::current_exception() != nullptr); |
| std::set_terminate(terminate_handler); |