diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-12-15 07:05:19 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-12-15 07:05:19 +0000 |
commit | 3fede1c9c0acbdf562cf7024fd307053a7a0de39 (patch) | |
tree | 3b62e3c774f01aebce3846f05f267ba15aa119d4 /libcxx/test/std/utilities/tuple | |
parent | 6f8d90999e451d2a7570e3614f0c569f3e809359 (diff) | |
download | bcm5719-llvm-3fede1c9c0acbdf562cf7024fd307053a7a0de39.tar.gz bcm5719-llvm-3fede1c9c0acbdf562cf7024fd307053a7a0de39.zip |
Add more test cases for PR31384
llvm-svn: 289778
Diffstat (limited to 'libcxx/test/std/utilities/tuple')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp | 68 |
1 files changed, 59 insertions, 9 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp index 9fde7ac9afa..30e020e8f0b 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp @@ -15,24 +15,74 @@ // template <class TupleLike> tuple(TupleLike&&); // libc++ extension // See llvm.org/PR31384 - #include <tuple> #include <cassert> - int count = 0; +struct Explicit { + Explicit() = default; + explicit Explicit(int) {} +}; + +struct Implicit { + Implicit() = default; + Implicit(int) {} +}; + template<class T> -struct derived : std::tuple<T> { +struct Derived : std::tuple<T> { using std::tuple<T>::tuple; template<class U> - operator std::tuple<U>() && { - ++count; - return {}; - } + operator std::tuple<U>() && { ++count; return {}; } +}; + + +template<class T> +struct ExplicitDerived : std::tuple<T> { + using std::tuple<T>::tuple; + template<class U> + explicit operator std::tuple<U>() && { ++count; return {}; } }; int main() { - std::tuple<int> foo = derived<int&&>{42}; - assert(count == 1); + { + std::tuple<Explicit> foo = Derived<int>{42}; + assert(count == 1); + std::tuple<Explicit> bar(Derived<int>{42}); + assert(count == 2); + } + count = 0; + { + std::tuple<Implicit> foo = Derived<int>{42}; + assert(count == 1); + std::tuple<Implicit> bar(Derived<int>{42}); + assert(count == 2); + } + count = 0; + { + static_assert(!std::is_convertible< + ExplicitDerived<int>, std::tuple<Explicit>>::value, ""); + std::tuple<Explicit> bar(ExplicitDerived<int>{42}); + assert(count == 1); + } + count = 0; + { + // FIXME: Libc++ incorrectly rejects this code. +#ifndef _LIBCPP_VERSION + std::tuple<Implicit> foo = ExplicitDerived<int>{42}; + static_assert(std::is_convertible< + ExplicitDerived<int>, std::tuple<Implicit>>::value, + "correct STLs accept this"); +#else + static_assert(!std::is_convertible< + ExplicitDerived<int>, std::tuple<Implicit>>::value, + "libc++ incorrectly rejects this"); +#endif + assert(count == 0); + std::tuple<Implicit> bar(ExplicitDerived<int>{42}); + assert(count == 1); + } + count = 0; + } |