teak-llvm/libcxx/test/std/utilities/tuple/tuple.tuple
Eric Fiselier 189f88ca35 Revert r276548 - Make pair/tuples assignment operators SFINAE properly.
This is a breaking change. The SFINAE required is instantiated the second
the class is instantiated, and this can cause hard SFINAE errors
when applied to references to incomplete types. Ex.

struct IncompleteType;
extern IncompleteType it;
std::tuple<IncompleteType&> t(it); // SFINAE will blow up.

llvm-svn: 276598
2016-07-25 01:45:07 +00:00
..
tuple.apply Suppress warning in make_from_tuple tests. 2016-07-18 01:52:46 +00:00
tuple.assign Revert r276548 - Make pair/tuples assignment operators SFINAE properly. 2016-07-25 01:45:07 +00:00
tuple.cnstr Make tuple_constructible and family lazy again. 2016-07-02 00:58:17 +00:00
tuple.creation Remove trailing whitespace in test suite. Approved by Marshall Clow. 2016-06-01 21:35:39 +00:00
tuple.elem Handle std::get<T>(...) for std::tuple<> 2016-07-02 03:46:08 +00:00
tuple.helper Implement C++17 tuple bits. Including apply and make_from_tuple. 2016-07-18 00:35:56 +00:00
tuple.rel Remove trailing whitespace in test suite. Approved by Marshall Clow. 2016-06-01 21:35:39 +00:00
tuple.special [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. 2015-02-19 02:10:42 +00:00
tuple.swap [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. 2015-02-19 02:10:42 +00:00
tuple.traits [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. 2015-02-19 02:10:42 +00:00
alloc_first.h
alloc_last.h
empty_member.pass.cpp [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. 2015-02-19 02:10:42 +00:00
TupleFunction.pass.cpp Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. 2016-06-14 21:31:42 +00:00