Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / tests / return_implicit.cocci
1 @@
2 identifier fn;
3 @@
4
5 fn(...)
6 {
7 foo(...);
8 ...
9 - return;
10 + return -ENODEV;
11 }