Reports expressions that can be converted to SAM (Single Abstract Method).

Example:


  new Thread(new Runnable {
      override def run() = println()
  })

After the quick-fix is applied:


  new Thread(() => println())