summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/constexpr-if4.C
blob: 871e31a286d8c35ffa2fb114e0f0d3507a389067 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile { target c++11 } }
// { dg-options "-w" }

void f()
{
  goto l;			// { dg-message "from here" }
  if constexpr (false)		// { dg-message "enters 'constexpr if'" }
    {
    l:;				// { dg-error "jump to label" }
    }
}