[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20101009-1_0.C
blobb7cc5bc478f908e8727572b3843a2ca5ec9912f7
1 // { dg-lto-do link }
3 template < typename > struct X
5   template < typename > static int test ();
6   static const int i = sizeof (test < int >());
7 };
9 template struct X < int >;
11 int main()
13   return 0;