We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 775c468 commit b024b0aCopy full SHA for b024b0a
compiler/rustc_middle/src/ty/sty.rs
@@ -1864,8 +1864,8 @@ impl<'tcx> Ty<'tcx> {
1864
// Definitely absolutely not copy.
1865
ty::Ref(_, _, hir::Mutability::Mut) => false,
1866
1867
- // The library has a blanket Copy impl for shared references and raw pointers,
1868
- // regardless of metadata.
+ // The standard library has a blanket Copy impl for shared references and raw pointers,
+ // for all unsized types.
1869
ty::Ref(_, _, hir::Mutability::Not) | ty::RawPtr(..) => true,
1870
1871
ty::Coroutine(..) | ty::CoroutineWitness(..) => false,
0 commit comments