JavaCompilerCore/resources/bytecode/javFiles/Op1.jav

11 lines
171 B
Plaintext
Raw Normal View History

2017-10-06 11:31:36 +00:00
public class Op1{
public Op1() {
Runnable lam = () -> {
String test = "";
String b = "b";
test = b;
System.out.println(test);};
//lam.run();
}
}