blob: 5108e89c87149deb9b549a3141841c9789a67b4f [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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_category
#include <system_error>
#include "test_macros.h"
int main(int, char**)
{
std::error_category* p = 0;
((void)p);
return 0;
}