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