1// RUN: %clang_cc1  -std=gnu99 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4void f0(restrict id a0) {}
5
6void f1(restrict id *a0) {}
7
8void f2(restrict Class a0) {}
9
10void f3(restrict Class *a0) {}
11