Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1  -std=gnu99 -fsyntax-only -verify %s
      2 
      3 void f0(restrict id a0) {}
      4 
      5 void f1(restrict id *a0) {}
      6 
      7 void f2(restrict Class a0) {}
      8 
      9 void f3(restrict Class *a0) {}
     10