Release coccinelle-0.1
[bpt/coccinelle.git] / tests / badtypedef.res
1 typedef struct foo { int a; } foo_t;
2
3 int main() {
4 struct foo *a;
5 foo_t *b;
6 foo_t *c;
7
8 aaa(a);
9 bbb(b);
10 }
11