PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / incomplete10.C
blobf0b406dfbfbdde7cb1151d59340328086f620cc4
1 // PR c++/79420
3 struct S;
4 extern S s; // { dg-error "'s' has incomplete type" }
5 template<int> int f ()
7   return s.x;
10 void g ()
12   f<0> ();