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