import java.util.function.Supplier; class Test { void foo() { if (true) { Supplier stringSupplier = () -> "Hello, world"; System.out.println(stringSupplier.get()); } } }