xref: /aosp_15_r20/external/bazelbuild-rules_rust/test/conflicting_deps/second_crate/lib.rs (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1 // This crate's name conflicts with its dependent but this should work OK.
2 
example_conflicting_symbol() -> String3 pub fn example_conflicting_symbol() -> String {
4     "[from second_crate]".to_owned()
5 }
6