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++.jason
/
scoping13.C
blob
fc90902a308496ca8c2a2457a9bba39137ae1d9e
1
// { dg-do assemble }
2
3
struct A { typedef int foo; };
4
struct B: public A {
5
typedef int bar;
6
struct C {
7
void g (B::bar); // { dg-bogus "" } nested type failure
8
void f (B::foo);
9
};
10
};