blob: 312ed3a991eb3122b54386dea24019dd73550d3a [file] [log] [blame]
const int* a;
int* const b;
int* restrict c;
const int* restrict d;
int* restrict const e;
int* const restrict f;