// "Replace with new Thread(() -> {…})" "false" public class Main { public void testThread() { new <caret>Thread() { int x = 5; @Override public void run() { System.out.println("Hello from thread! "+x); } }.start(); } }