/* Minimal compiler test for C compiler.
*/

unsigned int const *const blub;
int i1, u1, v1;

unsigned int
foo(const int *const restrict bar, int b)
{
return (*bar +b);
}

int main (void)
{
 i1= foo((u1=2, blub), 0215);
 return 0;
}
