blob: 3a29d878313e2712760cae8ee7dc2cd894355111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2007 Free Software Foundation
// Contributed by Ollie Wild <aaw@google.com>
// Origin: Volker Reichelt <reichelt@gcc.gnu.org>
// { dg-do compile }
// PR 31749: ICE with redeclaration of builtin
namespace std
{
union abort;
}
void abort();
using std::abort;
|