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