blob: 52b981d3638cf515c6262c3376601a51be0cf810 [file]
"""End-to-end test for methods."""
load("@rules_rust//rust:defs.bzl", "rust_test")
licenses(["notice"])
cc_library(
name = "methods",
srcs = ["methods.cc"],
hdrs = ["methods.h"],
)
rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":methods"],
)