Files
Notes/notes-service/vendor/ref-cast/tests/ui/cross-crate.rs
T
2026-08-01 16:11:49 +03:00

11 lines
196 B
Rust

use ref_cast::ref_cast_custom;
use ref_cast_test_suite::Struct;
#[ref_cast_custom]
fn ref_cast(s: &str) -> &Struct;
#[ref_cast_custom]
fn ref_cast_mut(s: &mut str) -> &mut Struct;
fn main() {}