rust/tests/ui/issues/issue-29030.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
145 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
2015-10-28 12:52:32 +00:00
#[derive(Debug)]
struct Message<'a, P: 'a = &'a [u8]> {
header: &'a [u8],
payload: P,
}
fn main() {}