blob: f9e89840314d4194d2b7648f217a19c68c534550 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
#[derive(Debug)]
struct Message<'a, P: 'a = &'a [u8]> {
header: &'a [u8],
payload: P,
}
fn main() {}