1 2 3 4 5 6 7 8
#![feature(rustdoc_internals)] #[doc(search_unbox)] pub struct Object<T, U>(T, U); pub fn something() -> Result<Object<i32, u32>, bool> { loop {} }