nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / g++.dg / other / redecl2.C
blob6c8913c1f09a8afa231173952fc11d6f4c49554a
1 // PR c++/17816
2 // We failed to report duplicate definitions of pure virtual ns.
4 // { dg-do compile }
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" }