blob: 36adaf92a7f1759957c068153316c3b39b6866bc [file] [log] [blame]
// { dg-do compile { target c++20 } }
// { dg-options "-w" }
void f()
{
if consteval
{
l:; // { dg-error "jump to label" }
}
else
{
goto l; // { dg-message "from here" }
}
}