PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / asmgoto1.C
blob6a3cbcef4eeb0e1736cb44af0a570fccdc3ecdc4
1 // PR c++/52247
2 // { dg-do compile }
4 template <int N>
5 bool
6 bar ()
8   __asm goto ("" : : : : lab);
9   return true;
10 lab:
11   return false;
14 bool
15 foo ()
17   return bar<0> ();