| 199 | type testUnionInput[T comparable] [][]T |
| 200 | type testUnionOutput[T comparable] []T |
| 201 | type testUnion[T comparable] struct { |
| 202 | input testUnionInput[T] |
| 203 | output testUnionOutput[T] |
| 204 | } |
| 205 | |
| 206 | func TestUnion(t *testing.T) { |
| 207 | for i, tt := range []testUnion[int]{ |
nothing calls this directly
no outgoing calls
no test coverage detected