Files
2026-08-01 16:11:49 +03:00

13 lines
218 B
Rust

use ref_cast::{ref_cast_custom, RefCastCustom};
#[derive(RefCastCustom)]
#[repr(transparent)]
pub struct Thing(String);
impl Thing {
#[ref_cast_custom]
pub fn ref_cast(s: &String) -> &Self {}
}
fn main() {}