Reports lambdas whose body is an expression and suggests converting expression bodies to code blocks.

Example:


  n -> n + 1

After the quick-fix is applied:

n -> {
  return n + 1;
}