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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr62121.C
blob
de1196a62e196ce10d2c93288f8ec18c8f03b9c5
1
// { dg-do compile }
2
class A
3
{
4
virtual double operator()();
5
};
6
class B : A
7
{
8
public:
9
double operator()();
10
};
11
extern B a[];
12
int b = a[0]();