次の例では:
void foo (double *ptr)
{
const double * restrict const restr_ptr=ptr;
}
次のエラーが表示されます。
error: expected a ";" const double * restrict const restr_ptr=ptr;
^
gcc 3.4 を使用して、-std=c99 でコンパイルします。
何か案は?