summaryrefslogtreecommitdiff
path: root/test/std/language.support/support.dynamic/alloc.errors/set.new.handler/get_new_handler.pass.cpp
blob: a9ed3b0cf3687f1ef446d20570d106bf4195fecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// test get_new_handler

#include <new>
#include <cassert>

void f1() {}
void f2() {}

int main(int, char**)
{
    assert(std::get_new_handler() == 0);
    std::set_new_handler(f1);
    assert(std::get_new_handler() == f1);
    std::set_new_handler(f2);
    assert(std::get_new_handler() == f2);

  return 0;
}