coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / struct_metavar.res
CommitLineData
34e49164
C
1struct foo {
2 int x;
3 struct bar first;
4 int y;
5 struct xxx second;
6 int z;
7};
8
9int main() {
10 struct foo *a;
11 struct notfoo *b;
12
13
14 f(b->first);
15 f(b->second);
16}
17