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
/
debug
/
pr29906.C
blob
d277fb8e6380d033833a10aaf42eec9414863c8a
1
// { dg-do compile }
2
// { dg-options "-g" }
3
4
struct A{
5
typedef int T;
6
virtual ~A();
7
};
8
struct B:public A{
9
using A::T;
10
};