Cleanup nonportable behavior in tests for std::any
Fixes MS issues 63, 64, and 65.
test/std/utilities/any/any.class/any.cons/move.pass.cpp:
- "Moves are always destructive" is not a portable assumption; check with LIBCPP_ASSERT.
test/std/utilities/any/any.class/any.cons/value.pass.cpp:
test/libcxx/utilities/any/any.class/any.cons/value.pass.cpp:
- The standard does not forbid initializing std::any from any pointer-to-function type. The DecayTag test is a libc++ extension (at best); factor it out into a test in the libcxx hierarchy.
test/std/utilities/any/any.class/any.modifiers/swap.pass.cpp:
- Self-swap is not specified to perform no moves; check with LIBCPP_ASSERT.