summary refs log blame commit diff stats
path: root/tests/objects/m19342.c
blob: 113f653095513d9c70800a2802c69d06948fff79 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                  
struct Node
{
  int data[25];
};


struct Node hello(int name) {
  struct Node x = {999, 1, 2, 3, 4, 5, 6, 7, 8, 9,
            0, 1, 2, 3, 4, 5, 6, 7 ,8, 9,
            1, 2, 3, 4, 5};
  return x;
}