blob: 79162ddaa8fd6974ec117dda4f7c896170aa0e52 [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_category
#include <system_error>
int main()
{
std::error_category* p = 0;
((void)p);
}