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
/
analyzer
/
vfunc-1.C
blob
349ab331d38f2d07fb23d1aef52e46de4702ad20
1
struct base
2
{
3
virtual int fn () const;
4
};
5
struct sub : public base
6
{
7
int fn () const;
8
};
9
10
int
11
test_1 (base *p)
12
{
13
return p->fn ();
14
}