summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-105321.C
blob: adb6830ff22a7816dedad89ae938cbeff449d987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/105321
// { dg-do compile { target c++11 } }

bool handle_error();

constexpr int echo(int value, bool yes = true) noexcept
{
    return (yes || handle_error()), value;
}

static_assert(echo(10) == 10, "");

constexpr int echo2(int value, bool no = false) noexcept
{
    return (!no || handle_error()), value;
}

static_assert(echo2(10) == 10, "");