OSDN Git Service

Pizza-lize :-)
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / redecl2.C
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" }