// "Replace anonymous class with constructor accepting lambda" "true" public class Main { public void testThread() { // Comment outside // Ending comment new Thread(() -> { // Comment inside System.out.println("Hello from thread!"); }).start(); } }