| 1 | vlib/v/checker/tests/generics_undefined_operation_2.vv:23:18: error: mismatched types `INode` and `&INode` |
| 2 | 21 | fn (mut h IHeap[T]) percolateup(hl u64, mut element T) { |
| 3 | 22 | mut hole := hl |
| 4 | 23 | for hole > 1 && element < h.array[int(hole / 2)] { |
| 5 | | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 6 | 24 | // ^ Notice that '<' was not defined |
| 7 | 25 | println("didnt define '<' for the INode") |
| 8 |