Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / array_size.cocci
1 @ rule1 using "empty.iso" @
2 expression E;
3 type T;
4 @@
5
6 - (sizeof(E)/sizeof(T))
7 + ARRAY_SIZE(E)