8 lines
84 B
Plaintext
Raw Permalink Normal View History

2015-09-29 18:18:06 +02:00
class LambdaExpr2 {
op = ()->method();
method() {
return 2;
}
}