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