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