//===----------------------------------------------------------------------===// | |
// | |
// 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); | |
} |