| 171 | type testIntersectInput[T comparable] [][]T |
| 172 | type testIntersectOutput[T comparable] []T |
| 173 | type testIntersect[T comparable] struct { |
| 174 | input testIntersectInput[T] |
| 175 | output testIntersectOutput[T] |
| 176 | } |
| 177 | |
| 178 | func TestIntersect(t *testing.T) { |
| 179 | for i, tt := range []testIntersect[int]{ |
nothing calls this directly
no outgoing calls
no test coverage detected