blob: 6fb36aae7d4ed912f52e63b981cea37df460c66e (
plain)
1
2
3
4
5
6
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;
}
|