Release coccinelle-0.2.0
[bpt/coccinelle.git] / tests / return_implicit.cocci
CommitLineData
34e49164
C
1@@
2identifier fn;
3@@
4
5fn(...)
6{
7 foo(...);
8 ...
9- return;
10+ return -ENODEV;
11}