| 1665 | detail::enable_if_t<std::is_convertible<U &&, T>::value> * = nullptr, |
| 1666 | detail::expected_enable_forward_value<T, E, U> * = nullptr> |
| 1667 | TL_EXPECTED_MSVC2015_CONSTEXPR expected(U &&v) |
| 1668 | : expected(in_place, std::forward<U>(v)) {} |
| 1669 | |
| 1670 | template < |
| 1671 | class U = T, class G = T, |