about summary refs log tree commit diff
path: root/src/libstd/std.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/std.rs')
-rw-r--r--src/libstd/std.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs
new file mode 100644
index 00000000000..6fb36aae7d4
--- /dev/null
+++ b/src/libstd/std.rs
@@ -0,0 +1,7 @@
+// A curious inner-module that's not exported that contains the binding
+// 'std' so that macro-expanded references to std::serialization and such
+// can be resolved within libcore.
+#[doc(hidden)] // FIXME #3538
+mod std {
+    pub use serialization;
+}