repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
forscope1.C
blob
e694d6f23326b0136af712874ba746237de981ad
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
}