blob: 7a3dab6b57e0fa21036484fdba12dbe522c180b9 [file]
"""End-to-end example of using type aliases."""
load("@rules_rust//rust:defs.bzl", "rust_test")
load("//rs_bindings_from_cc/test:test_bindings.bzl", "crubit_test_cc_library")
package(default_applicable_licenses = ["//:license"])
crubit_test_cc_library(
name = "void_pointers",
hdrs = ["void_pointers.h"],
)
rust_test(
name = "main",
srcs = ["test.rs"],
cc_deps = [":void_pointers"],
)