PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / constexpr-assert1.C
blobdf2a31539ff006292a3fcb487ca0db43f266c887
1 // PR c++/59329
2 // { dg-do compile { target c++14 } }
4 #include <cassert>
6 inline constexpr int exampleFunction(int min, int max)
8   assert(min <= max);
9   return min + max;