JavaTXCompilerInJavaTX/test/bytecode/lambda/Simple.jav

8 lines
66 B
Plaintext
Raw Normal View History

2016-11-09 15:59:08 +00:00
class Simple{
op = (i)->i;
public void main(){
op.apply(1);
}
}