diff options
Diffstat (limited to 'libcxx/test/std/utilities')
-rw-r--r-- | libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp index f7fb7ccfdfb..2b8cd709677 100644 --- a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp @@ -58,20 +58,6 @@ void test_result_of_imp() int main() { - { // Function types with noexcept - typedef bool (&RF0)(int) noexcept; - typedef bool (&RF1)(int, ...) noexcept; - typedef bool (*PF0)(int) noexcept; - typedef bool (*PF1)(int, ...) noexcept; - typedef bool (*&PRF0)(int) noexcept; - typedef bool (*&PRF1)(int, ...) noexcept; - test_result_of_imp<RF0(int), bool>(); - test_result_of_imp<PF0(int), bool>(); - test_result_of_imp<PRF0(int), bool>(); - test_result_of_imp<RF1(int, int), bool>(); - test_result_of_imp<PF1(int, int), bool>(); - test_result_of_imp<PRF1(int, int), bool>(); - } { typedef char F::*PMD; test_result_of_imp<PMD(F &), char &>(); |