(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
constexpr-assert1.C
// PR c++/59329
// { dg-do compile { target c++14 } }

#include <cassert>

inline constexpr int exampleFunction(int min, int max)
{
  assert(min <= max);
  return min + max;
}