teak-llvm/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign
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
..
const_pair.pass.cpp
convert_copy.pass.cpp Cleanup SFINAE in tuple, and add tests for reference assignment 2016-07-02 01:25:46 +00:00
convert_move.pass.cpp Fix MSVC unreferenced parameter warning. Patch from STL@microsoft.com 2016-07-24 23:32:48 +00:00
copy.fail.cpp
copy.pass.cpp Revert r276548 - Make pair/tuples assignment operators SFINAE properly. 2016-07-25 01:45:07 +00:00
move_pair.pass.cpp
move.pass.cpp Revert r276548 - Make pair/tuples assignment operators SFINAE properly. 2016-07-25 01:45:07 +00:00
tuple_array_template_depth.pass.cpp