You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
int a0;
|
|
const volatile int a1 = 2;
|
|
int a2[16];
|
|
int a3();
|
|
|
|
void f0(int);
|
|
void f1(int *);
|
|
void f2(int (*)());
|
|
|
|
int main()
|
|
{
|
|
f0(a0);
|
|
f0(a1);
|
|
f1(a2);
|
|
f2(a3);
|
|
}
|