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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
local2.C
blob
82d812ca270a44b734d60b21acc05882605f9e34
1
// PR c++/17155
2
// { dg-do link }
3
4
struct A {
5
virtual ~A() {}
6
};
7
8
9
void tsk_tsk(void)
10
{
11
struct B : public A {
12
B(int) {}
13
};
14
}
15
16
int main () {}