A function argument is overwritten before its first use SCC-SA4009
Bug risk
Major
1 occurrence in this check
argument ctx is overwritten before first use
 43)
 44
 45// BidirectionalStream represents gRPC bidirectional stream server handler.
 46func BidirectionalStream[Q any, R any](ctx context.Context, stream ServerStream, 47	concurrency int,
 48	f func(context.Context, *Q) (*R, error),
 49) (err error) {