2013-09-02 20:30:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
// <optional>
|
|
|
|
|
2014-12-09 14:49:17 +00:00
|
|
|
// template <class T> constexpr bool operator>(const optional<T>& x, nullopt_t) noexcept;
|
|
|
|
// template <class T> constexpr bool operator>(nullopt_t, const optional<T>& x) noexcept;
|
2013-09-02 20:30:37 +00:00
|
|
|
|
2013-11-15 22:42:10 +00:00
|
|
|
#include <experimental/optional>
|
2013-09-02 20:30:37 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#if _LIBCPP_STD_VER > 11
|
2014-10-18 11:03:33 +00:00
|
|
|
using std::experimental::optional;
|
|
|
|
using std::experimental::nullopt_t;
|
|
|
|
using std::experimental::nullopt;
|
2014-12-09 14:49:17 +00:00
|
|
|
|
2013-09-02 20:30:37 +00:00
|
|
|
{
|
|
|
|
typedef int T;
|
2013-11-15 22:42:10 +00:00
|
|
|
typedef optional<T> O;
|
2013-09-02 20:30:37 +00:00
|
|
|
|
|
|
|
constexpr O o1; // disengaged
|
|
|
|
constexpr O o2{1}; // engaged
|
|
|
|
|
2014-12-09 14:49:17 +00:00
|
|
|
static_assert ( !(nullopt > o1), "" );
|
|
|
|
static_assert ( !(nullopt > o2), "" );
|
|
|
|
static_assert ( !(o1 > nullopt), "" );
|
|
|
|
static_assert ( (o2 > nullopt), "" );
|
2013-09-02 20:30:37 +00:00
|
|
|
|
2014-12-09 14:49:17 +00:00
|
|
|
static_assert (noexcept(nullopt > o1), "");
|
|
|
|
static_assert (noexcept(o1 > nullopt), "");
|
2013-09-02 20:30:37 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|