1 struct Struct;
2 
3 extern "C" {
4 void ConstParameter(const char (&)[2]);
5 void VolatileParameter(volatile Struct &&);
6 void Restrict(char *);
7 char **MultipleConst(char const *const *const);
8 }
9 
10 char &ConstReturn();
11 Struct &&VolatileReturn();
12