| 3335 | detail::enable_if_t<std::is_convertible<U &&, T>::value> * = nullptr, |
| 3336 | detail::expected_enable_forward_value<T, E, U> * = nullptr> |
| 3337 | TL_EXPECTED_MSVC2015_CONSTEXPR expected(U &&v) |
| 3338 | : expected(in_place, std::forward<U>(v)) {} |
| 3339 | |
| 3340 | template < |
| 3341 | class U = T, class G = T, |