PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wredundant-decls-spec.C
blob3a9b019b67569864fade9c73b3e88dcf17837d48
1 // PR c++/15867
2 // { dg-options -Wredundant-decls }
4 template <typename T> struct S
5 {  
6   void foo() {}          
7 };  
9 template<> void S<int>::foo();
11 template<> void S<double>::foo();  // { dg-message "previous declaration" }
12 template<> void S<double>::foo();  // { dg-warning "redundant redeclaration" }