以下のコードを gcc でコンパイルすると、次のエラーが発生します。'i ' は定数式に表示できません。
どうしてこれなの?
#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;
}