mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-07 18:50:06 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
#![feature(rustdoc_internals)]
|
|
|
|
#[doc(search_unbox)]
|
|
pub struct Object<T, U>(T, U);
|
|
|
|
pub fn something() -> Result<Object<i32, u32>, bool> {
|
|
loop {}
|
|
}
|