coccinelle release 1.0.0-rc2
[bpt/coccinelle.git] / tests / multitype.c
... / ...
CommitLineData
1typedef struct foo { int a; } foo_t;
2
3int main() {
4 foo_t * x;
5 f(x->a);
6 g(x);
7}