blob: 7fab50081d2a3ccf3c8399e387b0ba1a1ec9f0e5 [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 unexpected_handler
#include <exception>
void f() {}
int main()
{
std::unexpected_handler p = f;
}