i386: Utilize VCOMSBF16 for BF16 Comparisons with AVX10.2
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-value-1.C
blob2ba5587fce04db599cb632c692878211ba17c59a
1 // PR c++/107797
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wunused" }
5 void
6 g ()
8   (long) new int{};
9   long(new int{});
10   (long) new int();
11   long(new int());