interface TestParam<A>{
	A test(A i);
}
class Lambda5{
	TestParam<Integer> methode(){
	return (i)->{System.out.println(this); return i;};	
}
}