diff options
Diffstat (limited to 'libcxx/test/language.support/support.dynamic/alloc.errors/new.handler')
-rw-r--r-- | libcxx/test/language.support/support.dynamic/alloc.errors/new.handler/new_handler.pass.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libcxx/test/language.support/support.dynamic/alloc.errors/new.handler/new_handler.pass.cpp b/libcxx/test/language.support/support.dynamic/alloc.errors/new.handler/new_handler.pass.cpp deleted file mode 100644 index 6b799a3e83d..00000000000 --- a/libcxx/test/language.support/support.dynamic/alloc.errors/new.handler/new_handler.pass.cpp +++ /dev/null @@ -1,19 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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 new_handler - -#include <new> - -void f() {} - -int main() -{ - std::new_handler p = f; -} |