• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1  -std=gnu99 -fsyntax-only -verify %s
2
3void f0(restrict id a0) {}
4
5void f1(restrict id *a0) {}
6
7void f2(restrict Class a0) {}
8
9void f3(restrict Class *a0) {}
10