aboutsummaryrefslogtreecommitdiff
path: root/tests/core/cgo/split_import_x_test.go
blob: 9202eaadef7eb4e10c03d5e7cfa8cbd2b16d8940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package a_test

import (
	"testing"

	"github.com/bazelbuild/rules_go/tests/core/cgo/split_import/b"
)

func TestExternal(t *testing.T) {
	if b.HalfAnswer() != 21 {
		t.Error("wrong answer")
	}
}