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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
redecl2.C
blob
6c8913c1f09a8afa231173952fc11d6f4c49554a
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-message "defined here" }
11
int S::foo() { return 0; } // { dg-error "redefinition" }