source: src/Tests/Parser/Initialization.c@ f7d59bf

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since f7d59bf was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 401 bytes
Line 
1// Cforall extensions
2
3int * x21 = 0, x22 = 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 : 1, [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};
Note: See TracBrowser for help on using the repository browser.