mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
24 lines
419 B
Rust
24 lines
419 B
Rust
#![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() {}
|