pointer returns the address of v and makes it easy to take the address of a predeclared identifier.
(v T)
| 122 | // pointer returns the address of v and makes it easy to take the address of a |
| 123 | // predeclared identifier. |
| 124 | func pointer[T any](v T) *T { |
| 125 | return &v |
| 126 | } |
| 127 | |
| 128 | func TestClientInitialization(t *testing.T) { |
| 129 | ctx := context.Background() |
no outgoing calls
no test coverage detected