llvm/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.overview/types.pass.cpp

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// <system_error>
// class error_condition

// Make sure that the error_condition bits of <system_error> are self-contained.

#include <system_error>
#include "test_macros.h"

int main(int, char**)
{
    std::error_condition x = std::errc(0);
    TEST_IGNORE_NODISCARD  x.category();   // returns a std::error_condition &
    TEST_IGNORE_NODISCARD  x.message();    // returns a std::string

  return 0;
}