blob: 33375aead4d5db8672ab295b82192c088ddcf6bb [file] [log] [blame]
//@ check-pass
#![allow(clippy::non_canonical_clone_impl)]
use std::fmt;
use std::marker::PhantomData;
pub struct Key<T> {
#[doc(hidden)]
pub __name: &'static str,
#[doc(hidden)]
pub __phantom: PhantomData<T>,
}
impl<T> Copy for Key<T> {}
impl<T> Clone for Key<T> {
fn clone(&self) -> Self {
Key {
__name: self.__name,
__phantom: self.__phantom,
}
}
}
fn main() {}