about summary refs log tree commit diff
path: root/src/libcore/clone.rs
diff options
context:
space:
mode:
authorScott McMurray <scottmcm@users.noreply.github.com>2018-03-30 23:06:05 -0700
committerScott McMurray <scottmcm@users.noreply.github.com>2018-03-30 23:06:05 -0700
commitfb7deda27419eae61da3cbf5a5b1b4f51ae16d04 (patch)
tree9dc51de2af727ff8741edb1c3f2b1665374da21d /src/libcore/clone.rs
parent80785a547d29519dbdb5781437ec318fb210b980 (diff)
downloadrust-fb7deda27419eae61da3cbf5a5b1b4f51ae16d04.tar.gz
rust-fb7deda27419eae61da3cbf5a5b1b4f51ae16d04.zip
Add #[must_use] to a few standard library methods
Chosen to start a precedent of using it on ones that are potentially-expensive and where using it for side effects is particularly discouraged.

Discuss :)
Diffstat (limited to 'src/libcore/clone.rs')
-rw-r--r--src/libcore/clone.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/clone.rs b/src/libcore/clone.rs
index d25f498b99e..c175ae15d28 100644
--- a/src/libcore/clone.rs
+++ b/src/libcore/clone.rs
@@ -105,6 +105,7 @@ pub trait Clone : Sized {
     /// assert_eq!("Hello", hello.clone());
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
+    #[must_use = "cloning is often expensive and is not expected to have side effects"]
     fn clone(&self) -> Self;
 
     /// Performs copy-assignment from `source`.