public class Op1{ public Op1() { Runnable lam = () -> { String test = ""; String b = "b"; test = b; System.out.println(test);}; //lam.run(); } }