Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / multiplus.cocci
1 // shows that there is a problem with \+
2
3 @@
4 identifier fn1, fld1;
5 identifier data, device;
6 type T;
7 expression delay;
8 @@
9
10 fn1 (
11 - void *data
12 + struct work_struct *work
13 ) {
14 <+...
15 schedule_delayed_work(&device->fld1,delay);
16 ...+>
17 }