| 145 | type testDistinctInput[T comparable] [][]T |
| 146 | type testDistinctOutput[T comparable] []T |
| 147 | type testDistinct[T comparable] struct { |
| 148 | input testDistinctInput[T] |
| 149 | output testDistinctOutput[T] |
| 150 | } |
| 151 | |
| 152 | func TestDistinct(t *testing.T) { |
| 153 | for i, tt := range []testDistinct[int]{ |
nothing calls this directly
no outgoing calls
no test coverage detected