blob: 7f7127c8479844a0885755e11f72fa9cdbbd6557 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <system_error>
// class error_condition
// void clear();
#include <system_error>
#include <cassert>
int main()
{
{
std::error_condition ec;
ec.assign(6, std::system_category());
assert(ec.value() == 6);
assert(ec.category() == std::system_category());
ec.clear();
assert(ec.value() == 0);
assert(ec.category() == std::generic_category());
}
}