1package cgo_multi_dir 2 3import "testing" 4 5func TestMultiDir(t *testing.T) { 6 if got, want := foo+bar, 46; got != want { 7 t.Errorf("got %d; want %d", got, want) 8 } 9} 10