Release coccinelle-0.2.1-rc1
[bpt/coccinelle.git] / tests / type_iso.c
CommitLineData
34e49164
C
1
2struct SHT ops1;
3struct SHT2 notops1;
4
5
6void main(int i)
7{
8 ops1.proc_info =1;
9 notops1.proc_info =1;
10
11}
12
13
14typedef struct SHT SHT_t;
15
16SHT_t ops2;
17SHT2_t notops2;
18
19void main(int i)
20{
21 ops2.proc_info =1;
22 notops2.proc_info =1;
23
24}