rustc/tests/rustdoc-js/nested-unboxed.rs
2025-01-11 15:57:26 +01:00

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 {}
}