-
-
Save petrochenkov/72d6e2c5803ab89fafd6c9abc7791239 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Needs to written only once, it probably makes sense to put this into the standard library | |
mod primitive { | |
mod detail { | |
pub type __u32 = u32; | |
} | |
pub use self::detail::__u32 as u32; | |
} | |
pub use primitive::u32 as Carrot; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment