1//===----------------------------------------------------------------------===//
2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3// See https://llvm.org/LICENSE.txt for license information.
4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5//
6//===----------------------------------------------------------------------===//
7
8// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9
10// template<class E> unexpected(E) -> unexpected<E>;
11
12#include <concepts>
13#include <expected>
14
15struct Foo{};
16
17static_assert(std::same_as<decltype(std::unexpected(5)), std::unexpected<int>>);
18static_assert(std::same_as<decltype(std::unexpected(Foo{})), std::unexpected<Foo>>);
19static_assert(std::same_as<decltype(std::unexpected(std::unexpected<int>(5))), std::unexpected<int>>);
20

source code of libcxx/test/std/utilities/expected/expected.unexpected/ctad.compile.pass.cpp