Remove outdated information about copy/move from the reference

Fixes #22136
This commit is contained in:
Steve Klabnik 2015-02-13 09:21:38 -05:00
parent cf636c233d
commit 4b25d7528b

View file

@ -2591,9 +2591,8 @@ of any reference that points to it.
When a [local variable](#memory-slots) is used as an
[rvalue](#lvalues,-rvalues-and-temporaries) the variable will either be moved
or copied, depending on its type. For types that contain [owning
pointers](#pointer-types) or values that implement the special trait `Drop`,
the variable is moved. All other types are copied.
or copied, depending on its type. All values whose type implements `Copy` are
copied, all others are moved.
### Literal expressions