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
/
inherit
/
volatile1.C
blob
48df50adac59b84d0b5a6e1df01466e8b9240648
1
// PR c++/19299
2
// Origin: Andrew Pinski <pinskia@gcc.gnu.org>
3
4
// { dg-do compile }
5
6
struct V
7
{
8
virtual void foo() = 0;
9
};
10
11
void bar(V volatile* p)
12
{
13
p->V::~V();
14
}