blob: 7de46b8a988afaea01b92b93b1f3fccdf633909b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
typedef struct c_type_1
{
int j;
} c_type_1_t;
void sub0(c_type_1_t *c_type, int expected_j);
int main(int argc, char **argv)
{
c_type_1_t c_type;
c_type.j = 11;
sub0(&c_type, c_type.j);
return 0;
}
|