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