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