1package cgo_trans_deps 2 3import ( 4 "testing" 5 6 "github.com/bazelbuild/rules_go/tests/cgo_trans_deps/dep" 7) 8 9func TestCgoTransDeps(t *testing.T) { 10 if dep.X != 42 { 11 t.Errorf("got %d; want %d", dep.X, 42) 12 } 13} 14