source: tests/zombies/Initialization.c @ 29185fc

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 29185fc was 87b9332, checked in by Andrew Beach <ajbeach@…>, 4 years ago

Moved 'examples/' to 'tests/zombies/'.

  • Property mode set to 100644
File size: 713 bytes
Line 
1// Cforall extensions
2
3int * x11 = 0, x12 = 0;
4int * x21 = 0, x22 = 0;
5
6[20] int y1, y2 = { 1, 2, 3 };
7
8// designators
9
10struct {
11        [int] w;
12} a = { .w : [2] };
13
14struct { int a[3], b; } w [] = { [0].a : {1}, [0].b : 3, [1].a[0] : 2 };
15
16struct {
17        int f1, f2, f3;
18        struct { int g1, g2, g3; } f4[4];
19} v7 = {
20  .f1 : 4,
21  f2 : 3,
22  .f4[2] : {
23          .g1 : 3,
24          g3 : 0,
25        },
26  .f4[3].g3 : 7,
27};
28
29struct point { int x; int z; struct {int y1, y2, y3;} y; int w;};
30struct quintet { int v, w, x, y, z;};
31
32int main() {
33        struct point p1 = { x : 3 };
34        struct point p2 = { 3, 4 };
35        struct point p3 = { .[x,z] : 5, y : { .[y3,y1] : 6, 17 } };
36        struct point p4 = { w : 5, 4 };
37}
38
39// Local Variables: //
40// tab-width: 4 //
41// End: //
Note: See TracBrowser for help on using the repository browser.