- Try to do better pretty printing when array elements are individually
[bpt/coccinelle.git] / tests / nocast.cocci
1 @@
2 identifier f, gfp;
3 type T;
4 @@
5
6 f(...,
7 - T gfp
8 + gfp_t gfp
9 , ...) {
10 ...
11 kmalloc(...,gfp)
12 ...
13 }