mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 04:39:16 +00:00
13 lines
179 B
Rust
13 lines
179 B
Rust
mod m {
|
|
pub struct Uuid(());
|
|
|
|
impl Uuid {
|
|
pub fn encode_buffer() -> [u8; LENGTH] {
|
|
[]
|
|
}
|
|
}
|
|
const LENGTH: usize = 0;
|
|
}
|
|
|
|
pub use m::Uuid;
|