repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr29906.C
blob
08bbe879bed55ea0fb944400d8ce43be99c56ee1
1
// { dg-do compile }
2
// { dg-options "-g -fno-emit-class-debug-always" }
3
4
struct A{
5
typedef int T;
6
virtual ~A();
7
};
8
struct B:public A{
9
using A::T;
10
};