source: src/Tests/Array.c @ 55ba7339

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 55ba7339 was 55ba7339, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

update keywords in test files

  • Property mode set to 100644
File size: 448 bytes
RevLine 
[51b7345]1int a1[];
[55ba7339]2//int a2[*];
3//double a4[3.0];
[51b7345]4
5int m1[][3];
[55ba7339]6//int m2[*][*];
[51b7345]7int m4[3][3];
8
9typedef int T;
10
11int fred() {
[55ba7339]12//      int a1[];
13//      int a2[*];
[a65d92e]14        int a4[3];
15        int T[3];
[51b7345]16}
17
18int mary( int T[3],
[a65d92e]19                  int p1[const 3],
20                  int p2[static 3],
21                  int p3[static const 3]
22        ) {
[51b7345]23}
24
25int (*tom())[3] {
26}
27
28int (*(jane)())( int T[3],
[a65d92e]29                                 int p1[const 3],
30                                 int p2[static 3],
31                                 int p3[static const 3]
32        ) {
[51b7345]33}
[a65d92e]34
35// Local Variables: //
36// tab-width: 4 //
37// End: //
Note: See TracBrowser for help on using the repository browser.