summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/depr/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp
blob: 549f8e0a5ac8f04a153960e52e14f0e37ed4c55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// REQUIRES: c++98 || c++03 || c++11 || c++14

// test unexpected_handler

#include <exception>

void f() {}

int main()
{
    std::unexpected_handler p = f;
    ((void)p);
}
OpenPOWER on IntegriCloud