Commit fa8438f7 by Jakub Jelinek

Fix up a typo.

From-SVN: r244338
parent 3594adc7
......@@ -8,7 +8,7 @@ foo ()
constexpr int o = n ? 1 : 0;
constexpr int p = n + 1 ? 1 : 0;
constexpr int q = "abc" + 1 ? 1 : 0;
return p + p + q == 3;
return o + p + q == 3;
}
static_assert (foo (), "");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment