]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/warn/Wunused-5.C
06d1a0516bc103c3fde172d33f93afab6d28acf3
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-5.C
1 // PR c++/14199
2 // { dg-options "-W -Wall -Wunused" }
3
4 struct X {
5 static void foo ();
6 };
7
8 template <typename T>
9 void foo (const T &t) {
10 t.foo();
11 }
12
13 template void foo (const X &);