xref: /llvm-project-15.0.7/clang/test/CXX/expr/p8.cpp (revision 143f2f6e)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 int a0;
4 const volatile int a1 = 2;
5 int a2[16];
6 int a3();
7 
8 void f0(int);
9 void f1(int *);
10 void f2(int (*)());
11 
12 int main()
13 {
14   f0(a0);
15   f0(a1);
16   f1(a2);
17   f2(a3);
18 }
19