From dc246ae0188500c2e3c62704aa9f8b2f02fd586c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 4 Jan 2015 23:40:07 -0800 Subject: [PATCH] std: Fix missing stability on prelude The module itself is stable (the name) --- src/libstd/prelude/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libstd/prelude/mod.rs b/src/libstd/prelude/mod.rs index 1fbd17ede08f..0496944dbaf8 100644 --- a/src/libstd/prelude/mod.rs +++ b/src/libstd/prelude/mod.rs @@ -35,5 +35,7 @@ //! pervasive that it would be obnoxious to import for every use, particularly //! those that define methods on primitive types. +#![stable] + #[stable] pub mod v1;