diff --git a/source/expressions.tex b/source/expressions.tex index 888f8c0627..1f9a1d0164 100644 --- a/source/expressions.tex +++ b/source/expressions.tex @@ -9442,7 +9442,7 @@ constexpr int f() { const int n = std::is_constant_evaluated() ? 13 : 17; // \tcode{n} is 13 int m = std::is_constant_evaluated() ? 13 : 17; // \tcode{m} can be 13 or 17 (see below) - char arr[n] = {}; // char[13] + char arr[n] = {}; // \tcode{char[13]} return m + sizeof(arr); } int p = f(); // \tcode{m} is 13; initialized to 26