2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / forscope1.C
blobe694d6f23326b0136af712874ba746237de981ad
1 // { dg-do compile }
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 4 Sept 2001 <nathan@codesourcery.com>
6 // Bug 4206. We were nesting SCOPE_STMTs badly.
8 struct A
10   A ();
11   ~A ();
15 void Go( )
17   while (1)
18     {
19       switch (1) {
20       default: {}
21       }
22       A d;
23     }
24