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