rust/tests/ui/cross-crate/auxiliary/xcrate-trait-lifetime-param.rs

4 lines
64 B
Rust

pub trait FromBuf<'a> {
fn from_buf(_: &'a [u8]) -> Self;
}