diff options
author | Marshall Clow <mclow@qualcomm.com> | 2012-02-01 21:37:24 +0000 |
---|---|---|
committer | Marshall Clow <mclow@qualcomm.com> | 2012-02-01 21:37:24 +0000 |
commit | 62e0f4abf67f6d549cd4c634d87d71cb72ac9d5c (patch) | |
tree | 01a73c1c8b44e76d5002f1d6baf4f6d60b1dd133 /libcxxabi | |
parent | 60eaa490363f0e7a846214463ee378f1d8ff1301 (diff) | |
download | bcm5719-llvm-62e0f4abf67f6d549cd4c634d87d71cb72ac9d5c.tar.gz bcm5719-llvm-62e0f4abf67f6d549cd4c634d87d71cb72ac9d5c.zip |
Added tests for catching const/non-const nullptr
llvm-svn: 149542
Diffstat (limited to 'libcxxabi')
-rw-r--r-- | libcxxabi/test/catch_const_pointer_nullptr.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libcxxabi/test/catch_const_pointer_nullptr.cpp b/libcxxabi/test/catch_const_pointer_nullptr.cpp new file mode 100644 index 00000000000..0e9b8b0a0ef --- /dev/null +++ b/libcxxabi/test/catch_const_pointer_nullptr.cpp @@ -0,0 +1,64 @@ +//===--------------------- catch_pointer_nullptr.cpp ----------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +#include <cassert> + +#if __has_feature(cxx_nullptr) + +struct A {}; + +void test1() +{ + try + { + throw nullptr; + assert(false); + } + catch (const A*) + { + } + catch (A*) + { + assert(false); + } +} + +void test2() +{ + try + { + throw nullptr; + assert(false); + } + catch (A*) + { + } + catch (const A*) + { + assert(false); + } +} + +#else + +void test1() +{ +} + +void test2() +{ +} + +#endif + +int main() +{ + test1(); + test2(); +} |