about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-07-18 16:01:55 -0700
committerBrian Anderson <banderson@mozilla.com>2014-07-18 18:34:35 -0700
commit71f3d8fc1f917b5a5626bba166a54d6a68971dc1 (patch)
treef57c7cdcd701eb4003b27f3a868ba73cfa575c95
parenta57e2a7f4ddb9899de6a26281c9a1a3501866db8 (diff)
downloadrust-71f3d8fc1f917b5a5626bba166a54d6a68971dc1.tar.gz
rust-71f3d8fc1f917b5a5626bba166a54d6a68971dc1.zip
std: Stabilize default
All stable.
-rw-r--r--src/libcore/default.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/default.rs b/src/libcore/default.rs
index 0fcc02aae0d..70780515dec 100644
--- a/src/libcore/default.rs
+++ b/src/libcore/default.rs
@@ -10,6 +10,8 @@
 
 //! The `Default` trait for types which may have meaningful default values
 
+#![stable]
+
 /// A trait that types which have a useful default value should implement.
 pub trait Default {
     /// Return the "default value" for a type.