JavaCompilerCore/test/bytecode/Identity.jav
Martin Plümicke a33ce04734 modified
2016-09-30 12:48:41 +02:00

7 lines
55 B
Java

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