Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / depr / exception.unexpected / unexpected.handler / unexpected_handler.pass.cpp
blobb8736e0014d31ef74a520fd2cdff76d483b083a1
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 //===----------------------------------------------------------------------===//
9 // REQUIRES: c++03 || c++11 || c++14
11 // test unexpected_handler
13 #include <exception>
15 #include "test_macros.h"
17 void f() {}
19 int main(int, char**)
21 std::unexpected_handler p = f;
22 ((void)p);
24 return 0;