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