blob: 96085b3b221f75fcd4aa30effd8814905c859045 [file] [log] [blame]
"""End-to-end example of using type aliases to fully-instantiated templates."""
load("@rules_rust//rust:defs.bzl", "rust_test")
licenses(["notice"])
cc_library(
name = "method_params",
hdrs = ["method_params.h"],
)
rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":method_params"],
)