const int* a;
int* const b;
int* restrict c;
const int* restrict d;
int* restrict const e;
int* const restrict f;
