9 lines
143 B
Java
9 lines
143 B
Java
|
interface TestParam<A>{
|
||
|
A test(A i);
|
||
|
}
|
||
|
class Lambda5{
|
||
|
TestParam<Integer> methode(){
|
||
|
return (i)->{System.out.println(this); return i;};
|
||
|
}
|
||
|
}
|