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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Woverloaded-1.C
blob
65a408b47d0e190358618c6aed2825681d8f01fe
1
/* { dg-options "-Woverloaded-virtual" } */
2
3
class Base {
4
public:
5
virtual ~Base() {
6
}
7
};
8
9
class Derived: public Base {
10
public:
11
int Base() { // There should be no error here.
12
return 5;
13
}
14
};
15
16
int main() {
17
}