Auto merge of #43406 - canndrew:never-impl-clone, r=alexcrichton

Add missing `!: Clone` impl

Fixes #43296

(untested because I'm having computer troubles, but a one-liner can't break anything right?)
This commit is contained in:
bors 2017-07-23 04:25:39 +00:00
commit 764b57ef56

View File

@ -165,6 +165,7 @@ clone_impl! { u128 }
clone_impl! { f32 }
clone_impl! { f64 }
clone_impl! { ! }
clone_impl! { () }
clone_impl! { bool }
clone_impl! { char }