18 lines
252 B
Plaintext
18 lines
252 B
Plaintext
class LambdaCapture {
|
|
|
|
java.lang.Integer i;
|
|
TPH BIMD f;
|
|
LambdaCapture(){
|
|
super(());
|
|
this.i = 8;
|
|
}
|
|
LambdaCapture(){
|
|
super(());
|
|
java.lang.Integer w;
|
|
w = 7;
|
|
this.f = (TPH BIMH j) -> {
|
|
return w op this.i;
|
|
};
|
|
}
|
|
|
|
} |