blob: 22478531b95f69c2f29e1bf3ecf02410b8c55c1e [file] [log] [blame]
// Build don't run:
void f(int* const volatile * const * const*);
void f(int* const * const * const*) {}
int main()
{
int*** ip;
f(&ip);
}