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
/
other
/
redecl2.C
blob
591c258b8911ed1cb386e7f12461125bebde9166
1
// PR c++/17816
2
// We failed to report duplicate definitions of pure virtual ns.
3
4
// { dg-do compile }
5
6
struct S {
7
virtual int foo() = 0;
8
};
9
10
int S::foo() { return 0; } // { dg-error "defined here" }
11
int S::foo() { return 0; } // { dg-error "redefinition" }