7 lines
112 B
Go
7 lines
112 B
Go
|
package testhelpers
|
||
|
|
||
|
// Intp returns a pointer to the given integer value.
|
||
|
func Intp(i int) *int {
|
||
|
return &i
|
||
|
}
|