// "Replace with lambda" "true-preview" class Test { Runnable a = () -> {}; Runnable r = new Runnable() { public void run() { a.run(); } }; }