Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / crash22.C
blobeaf4d1a5c08e4f0603783c3c8fa4fcb965ef6c1d
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 4 Jan 2005 <nathan@codesourcery.com>
4 // PR 19030: ICE
5 // Origin: Volker Reichelt <reichelt@gcc.gnu.org>
7 struct A; // { dg-error "A" }
9 namespace N
11   struct A; // { dg-error "A" }
14 using namespace N;
16 int A::i; // { dg-error "ambiguous|declared here" "" }
17 int A::i; // { dg-error "ambiguous|redefinition of" "" }
19 namespace N
21     struct C;
22     struct C {};
25 class D : N::C {};