blob: 2c4f8d4155a94d6450cda35dcb6f1b29e019cbb2 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_test(
name = "go_default_test",
size = "small",
srcs = ["pure_test.go"],
embed = [":go_default_library"],
)
go_library(
name = "go_default_library",
srcs = ["pure.go"],
cgo = True,
importpath = "github.com/bazelbuild/rules_go/tests/cgo_filtered",
)