Coccinelle release 0.2.5-rc8
[bpt/coccinelle.git] / tests / mem.cocci
1 @rule1@
2 identifier f;
3 @@
4
5 f(...) {
6 <+...
7 dev_kfree_skb_irq(...)
8 ...+>
9 }
10
11 @@
12 identifier rule1.f, fld;
13 identifier I;
14 type T;
15 @@
16
17 T I = {
18 * .fld = f,
19 };