// "Replace with new Thread() with lambda argument" "false" public class Main { public void testThread() { new Thread() { @Override public void start() { System.out.println("Hello from thread!"); } }.start(); } }