JavaCompilerCore/test/bytecode/Identity.jav

7 lines
55 B
Java

class Identity{
op = (x)->x;
m(){
op.apply(1);
}
}