blob: 232ce0a5a88866439ead10b79ea287b1614667c7 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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 terminate_handler
#include <exception>
void f() {}
int main()
{
std::terminate_handler p = f;
}