Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / multitype.c
1 typedef struct foo { int a; } foo_t;
2
3 int main() {
4 foo_t * x;
5 f(x->a);
6 g(x);
7 }