xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/cgo_multi_dir/cgo_multi_dir_test.go (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
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