i386: Utilize VCOMSBF16 for BF16 Comparisons with AVX10.2
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-18.C
blob06d1a0516bc103c3fde172d33f93afab6d28acf3
1 // PR c++/14199
2 // { dg-options "-W -Wall -Wunused" }
4 struct X { 
5     static void foo (); 
6 }; 
7  
8 template <typename T> 
9 void foo (const T &t) { 
10   t.foo(); 
13 template void foo (const X &);