coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / replace_typedef.res
1 typedef struct foo { int x; } foo_t;
2
3 typedef int int_t;
4
5 int main() {
6 struct foo x;
7 int y;
8 x.x = 12;
9 return x.x + y;
10 }