When compiling the code below with gcc, I get an error: 'i' cannot appear in a constant-expression.
Why is this?
#include <iostream>
using namespace std;
template<int p>
class C
{
public:
void test();
};
template<int p>
void C<p>::test()
{
p = 0;
}
char const *const p = "hello";
int main()
{
const int i = (int)p;
C<i> c;
}
The variable
i
is not mutable at runtime because it isconst
, but it is not a "constant expression" because it is not evaluated at compile-time.(int)p;
is areinterpret_cast
. Integral constant expressions cannot havereinterpret_cast
. It is explicitly forbidden (§5.19/2):