sync with N3126

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@113098 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-09-05 00:57:20 +00:00
parent b02310e487
commit e3e488eb61
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// test unexpected_handler
#include <exception>
void f() {}
int main()
{
std::unexpected_handler p = f;
}