2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / lto / pr40725_1.c
blob7de46b8a988afaea01b92b93b1f3fccdf633909b
1 typedef struct c_type_1
3 int j;
4 } c_type_1_t;
5 void sub0(c_type_1_t *c_type, int expected_j);
6 int main(int argc, char **argv)
8 c_type_1_t c_type;
9 c_type.j = 11;
10 sub0(&c_type, c_type.j);
11 return 0;