()
| 14 | return tuple(new Amphibian(), "hi", 47); |
| 15 | } |
| 16 | static |
| 17 | Tuple4<Vehicle, Amphibian, String, Integer> h() { |
| 18 | return tuple( |
| 19 | new Vehicle(), new Amphibian(), "hi", 47); |
| 20 | } |
| 21 | static |
| 22 | Tuple5<Vehicle, Amphibian, |
| 23 | String, Integer, Double> k() { |