1 // { dg-do compile { target c++11 } }
2 // { dg-options "-w" }
3 
f()4 void f()
5 {
6   if constexpr (false)
7     {
8     l:;
9       goto l;
10     }
11   else
12     {
13     }
14 }
15