diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-07-18 16:01:55 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-07-18 18:34:35 -0700 |
| commit | 71f3d8fc1f917b5a5626bba166a54d6a68971dc1 (patch) | |
| tree | f57c7cdcd701eb4003b27f3a868ba73cfa575c95 | |
| parent | a57e2a7f4ddb9899de6a26281c9a1a3501866db8 (diff) | |
| download | rust-71f3d8fc1f917b5a5626bba166a54d6a68971dc1.tar.gz rust-71f3d8fc1f917b5a5626bba166a54d6a68971dc1.zip | |
std: Stabilize default
All stable.
| -rw-r--r-- | src/libcore/default.rs | 2 |
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. |
