Chris Lattner | df89dd4 | 2006-08-06 18:22:00 +0000 | [diff] [blame^] | 1 | // RUN: clang %s -fsyntax-only |
2 | |||||
3 | extern void a1[]; | ||||
4 | |||||
5 | void f0(); | ||||
6 | void f1(int [*]); | ||||
7 | void f2(int [const *]); | ||||
8 | void f3(int [volatile const*]); | ||||
9 | int f4(*XX)(void); | ||||
10 | |||||
11 | char ((((*X)))); | ||||
12 | |||||
13 | void (*signal(int, void (*)(int)))(int); | ||||
14 | |||||
15 | int a, ***C, * const D, b(int); | ||||
16 | |||||
17 | int *A; | ||||
18 |