Fix Go tests to run in module mode

Stop using relative imports and add a go.mod file.

Tested against Go 1.6 through Go pre-1.13, and gccgo.
This commit is contained in:
Ian Lance Taylor 2019-04-24 21:43:38 -07:00
commit 8a1c09e280
173 changed files with 298 additions and 227 deletions

View file

@ -3,7 +3,7 @@
package main
import "fmt"
import . "./member_pointer"
import . "member_pointer"
func check(what string, expected float64, actual float64) {
if expected != actual {