@Test
 public void shouldReverse() {
   final Function5<Object, Object, Object, Object, Object, Object> f =
       (o1, o2, o3, o4, o5) -> null;
   assertThat(f.reversed()).isNotNull();
 }