Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / tests / constty.c
1 int main () {
2 const int x;
3 int y;
4 f(x,int);
5 f(y,int);
6 f(x,const int);
7 }