OSDN Git Service

add comments
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / forscope1.C
1 // { dg-do compile }
2
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 4 Sept 2001 <nathan@codesourcery.com>
5
6 // Bug 4206. We were nesting SCOPE_STMTs badly.
7
8 struct A
9 {
10   A ();
11   ~A ();
12 };
13
14
15 void Go( )
16 {
17   while (1)
18     {
19       switch (1) {
20       default: {}
21       }
22       A d;
23     }
24   
25 }