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