> BTW, your lambda could be simpler as you can use expression form for this case: > > final C c = () -> { "Hello World" }; Without the braces :) final C c = () -> "Hello World";