diff options
Diffstat (limited to 'libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler')
-rw-r--r-- | libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp b/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp deleted file mode 100644 index 50b3d346697..00000000000 --- a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp +++ /dev/null @@ -1,19 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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; -} |