repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup12.C
blob
d283e2c291448c3633b90a6eee3d9700b7ef7da4
1
// { dg-do assemble }
2
// Origin: Mark Mitchell <mark@codesourcery.com>
3
4
struct B {
5
struct X {};
6
};
7
8
9
struct D : public B {
10
void X();
11
12
struct X x;
13
14
void f();
15
};
16
17
18
void D::f()
19
{
20
struct X y;
21
}