Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / ben.cocci
CommitLineData
113803cf
C
1@@
2function get_type;
3identifier this_info, this_type;
4typedef GType, GTypeInfo;
5initialiser E ;
6@@
7+ static GType this_type = 0;
708f4980 8+ static const GTypeInfo this_info = E;
113803cf
C
9GType get_type () {
10- static GType this_type = 0;
11 if (...) {
12- static const GTypeInfo this_info = E ;
13 ...
14 }
15...
16}