Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / arraysz.cocci
1 @ disable all @
2 type T;
3 const T[] E;
4 @@
5
6 - (sizeof(E)/sizeof(T))
7 + ARRAY_SIZE(E)