aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/cgo_trans_deps/cgo_test.go
blob: 98225ce0ddc331ed655232f7689479f2a10724a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package cgo_trans_deps

import (
	"testing"

	"github.com/bazelbuild/rules_go/tests/cgo_trans_deps/dep"
)

func TestCgoTransDeps(t *testing.T) {
	if dep.X != 42 {
		t.Errorf("got %d; want %d", dep.X, 42)
	}
}