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
strub: enable conditional support
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr71308.C
blob
ff5cd95fe7c197d72a69cb39b9fe402dca594196
1
// PR middle-end/71308
2
// { dg-do compile }
3
4
class S
5
{
6
void foo ();
7
virtual void bar () = 0;
8
virtual ~S ();
9
};
10
inline void
11
S::foo ()
12
{
13
bar ();
14
};
15
S::~S ()
16
{
17
foo ();
18
}