Warning, /sdk/clazy/docs/checks/README-returning-void-expression.md is written in an unsupported language. File is not indexed.
0001 # returning-void-expression
0002
0003 Warns when returning a void expression.
0004
0005 Example:
0006 ```
0007 void doStuff()
0008 {
0009 if (cond)
0010 return // Oops, forgot the ; but it still compiles since processStuff() returns void.
0011
0012 processStuff();
0013 }
0014 ```