xref: /aosp_15_r20/external/bazelbuild-rules_rust/test/proc_macro/data/proc_macro_helper.rs (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1 use std::path::Path;
2 
ensure_helper_data_exists()3 pub fn ensure_helper_data_exists() {
4     let path = Path::new(env!("CARGO_MANIFEST_DIR")).join("helper_data.txt");
5     assert!(path.exists(), "not found: {}", path.display());
6 }
7