mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
377 B
Rust
21 lines
377 B
Rust
// check-pass
|
|
pub trait Archive {
|
|
type Archived;
|
|
}
|
|
|
|
impl<T> Archive for Option<T> {
|
|
type Archived = ();
|
|
}
|
|
pub type Archived<T> = <T as Archive>::Archived;
|
|
|
|
pub trait Deserialize<D> {}
|
|
|
|
const ARRAY_SIZE: usize = 32;
|
|
impl<__D> Deserialize<__D> for ()
|
|
where
|
|
Option<[u8; ARRAY_SIZE]>: Archive,
|
|
Archived<Option<[u8; ARRAY_SIZE]>>: Deserialize<__D>,
|
|
{
|
|
}
|
|
fn main() {}
|