blob: f3b9eada7651b0cb651ea9638d49d9b448b99e50 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
// error_condition(int val, const error_category& cat);
#include <system_error>
#include <cassert>
int main()
{
{
std::error_condition ec(6, std::system_category());
assert(ec.value() == 6);
assert(ec.category() == std::system_category());
}
{
std::error_condition ec(8, std::generic_category());
assert(ec.value() == 8);
assert(ec.category() == std::generic_category());
}
}