about summary refs log tree commit diff
path: root/tests/crashes/122529.rs
blob: 87d393a453243b532c13aab364c451c5dfdadb15 (plain)
1
2
3
4
5
6
7
8
//@ known-bug: #122529
pub trait Archive {
    type Archived;
}

impl<'a> Archive for <&'a [u8] as Archive>::Archived {
    type Archived = ();
}