//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // test set_new_handler #include #include void f1() {} void f2() {} int main() { assert(std::set_new_handler(f1) == 0); assert(std::set_new_handler(f2) == f1); }