• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct S {
2   int (*f01)(int);
3   int (*f02)(const int*);
4   int (*f03)(int* const);
5   int (*f04)(int* restrict);
6   int (*f05)(const int* restrict);
7   int (*f06)(int* restrict const);
8   int (*f07)(int* const restrict);
9 };
10 
11 struct S s;
12 
13