[5ead9f9] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
[dc8511c] | 7 | // identFuncDeclarator.cfa --
|
---|
[5ead9f9] | 8 | //
|
---|
| 9 | // Author : Peter A. Buhr
|
---|
| 10 | // Created On : Wed Aug 17 08:36:34 2016
|
---|
| 11 | // Last Modified By : Peter A. Buhr
|
---|
[53692b3] | 12 | // Last Modified On : Sat Jun 5 10:06:25 2021
|
---|
| 13 | // Update Count : 6
|
---|
[5ead9f9] | 14 | //
|
---|
| 15 |
|
---|
[2853d6f] | 16 | int f1;
|
---|
| 17 | int (f2);
|
---|
| 18 |
|
---|
| 19 | int * f3;
|
---|
| 20 | int ** f4;
|
---|
| 21 | int * const * f5;
|
---|
| 22 | int * const * const f6;
|
---|
| 23 |
|
---|
| 24 | int * (f7);
|
---|
| 25 | int ** (f8);
|
---|
| 26 | int * const * (f9);
|
---|
| 27 | int * const * const (f10);
|
---|
| 28 |
|
---|
| 29 | int (* f11);
|
---|
| 30 | int (** f12);
|
---|
| 31 | int (* const * f13);
|
---|
| 32 | int (* const * const f14);
|
---|
| 33 |
|
---|
| 34 | int f15[2];
|
---|
| 35 | int f16[10];
|
---|
| 36 | int (f17[2]);
|
---|
| 37 | int (f18[10]);
|
---|
| 38 |
|
---|
| 39 | int * f19[2];
|
---|
| 40 | int * f20[10];
|
---|
| 41 | int ** f21[2];
|
---|
| 42 | int ** f22[10];
|
---|
| 43 | int * const * f23[2];
|
---|
| 44 | int * const * f24[10];
|
---|
| 45 | int * const * const f25[2];
|
---|
| 46 | int * const * const f26[10];
|
---|
| 47 |
|
---|
| 48 | int * (f27[2]);
|
---|
| 49 | int * (f28[10]);
|
---|
| 50 | int ** (f29[2]);
|
---|
| 51 | int ** (f30[10]);
|
---|
| 52 | int * const * (f31[2]);
|
---|
| 53 | int * const * (f32[10]);
|
---|
| 54 | int * const * const (f33[2]);
|
---|
| 55 | int * const * const (f34[10]);
|
---|
| 56 |
|
---|
| 57 | int (* f35[2]);
|
---|
| 58 | int (* f36[10]);
|
---|
| 59 | int (** f37[2]);
|
---|
| 60 | int (** f38[10]);
|
---|
| 61 | int (* const * f39[2]);
|
---|
| 62 | int (* const * f40[10]);
|
---|
| 63 | int (* const * const f41[2]);
|
---|
| 64 | int (* const * const f42[10]);
|
---|
| 65 |
|
---|
| 66 | int f43[2][3];
|
---|
| 67 | int f44[3][3];
|
---|
| 68 | int (f45[2])[3];
|
---|
| 69 | int (f46[3])[3];
|
---|
| 70 | int ((f47[2]))[3];
|
---|
| 71 | int ((f48[3]))[3];
|
---|
| 72 |
|
---|
| 73 | int * f49[2][3];
|
---|
| 74 | int * f50[3][3];
|
---|
| 75 | int ** f51[2][3];
|
---|
| 76 | int ** f52[3][3];
|
---|
| 77 | int * const * f53[2][3];
|
---|
| 78 | int * const * f54[3][3];
|
---|
| 79 | int * const * const f55[2][3];
|
---|
| 80 | int * const * const f56[3][3];
|
---|
| 81 |
|
---|
| 82 | int (* f57[2][3]);
|
---|
| 83 | int (* f58[3][3]);
|
---|
| 84 | int (** f59[2][3]);
|
---|
| 85 | int (** f60[3][3]);
|
---|
| 86 | int (* const * f61[2][3]);
|
---|
| 87 | int (* const * f62[3][3]);
|
---|
| 88 | int (* const * const f63[2][3]);
|
---|
| 89 | int (* const * const f64[3][3]);
|
---|
| 90 |
|
---|
| 91 | int f65(int);
|
---|
| 92 | int (f66)(int);
|
---|
| 93 |
|
---|
| 94 | #pragma GCC diagnostic push
|
---|
| 95 | #pragma GCC diagnostic ignored "-Wignored-qualifiers"
|
---|
| 96 |
|
---|
| 97 | int * f67(int);
|
---|
| 98 | int ** f68(int);
|
---|
| 99 | int * const * f69(int);
|
---|
| 100 | int * const * const f70(int);
|
---|
| 101 |
|
---|
| 102 | int * (f71)(int);
|
---|
| 103 | int ** (f72)(int);
|
---|
| 104 | int * const * (f73)(int);
|
---|
| 105 | int * const * const (f74)(int);
|
---|
| 106 |
|
---|
| 107 | int (* f75)(int);
|
---|
| 108 | int (** f76)(int);
|
---|
| 109 | int (* const * f77)(int);
|
---|
| 110 | int (* const * const f78)(int);
|
---|
| 111 |
|
---|
| 112 | int (* (* f79)(int))();
|
---|
| 113 | int (* (* const f80)(int))();
|
---|
| 114 | int (* const(* const f81)(int))();
|
---|
| 115 |
|
---|
| 116 | #pragma GCC diagnostic pop
|
---|
| 117 |
|
---|
[62edde5] | 118 | int main() {
|
---|
[2853d6f] | 119 | printf("done\n");
|
---|
[62edde5] | 120 | }
|
---|
[5ead9f9] | 121 |
|
---|
| 122 | // Local Variables: //
|
---|
| 123 | // tab-width: 4 //
|
---|
[dc8511c] | 124 | // compile-command: "cfa identFuncDeclarator.cfa" //
|
---|
[5ead9f9] | 125 | // End: //
|
---|