testsuite: 32 bit AIX 2 byte wchar
[official-gcc.git] / gcc / testsuite / g++.dg / cpp23 / consteval-if8.C
blob36adaf92a7f1759957c068153316c3b39b6866bc
1 // { dg-do compile { target c++20 } }
2 // { dg-options "-w" }
4 void f()
6   if consteval
7     {
8     l:;                         // { dg-error "jump to label" }
9     }
10   else
11     {
12       goto l;                   // { dg-message "from here" }
13     }