summaryrefslogtreecommitdiff
path: root/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.overview/types.pass.cpp
blob: 62539ab3ee69a9d441084d7ff30df2b16e57ffd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===----------------------------------------------------------------------===//
//
//                     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.
//
//===----------------------------------------------------------------------===//

// <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()
{
    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
}