blob: 17358b7ff827335319076c4ebee2b0cda447e7e1 [file]
"""End-to-end tests of C++ functions that don't have lifetime annotations."""
load("@rules_rust//rust:defs.bzl", "rust_test")
licenses(["notice"])
cc_library(
name = "no_elided_lifetimes",
srcs = ["no_elided_lifetimes.cc"],
hdrs = ["no_elided_lifetimes.h"],
)
rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":no_elided_lifetimes"],
)