Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/upstream/master
/
.
/
tests
/
rustdoc-js
/
nested-unboxed.rs
blob: 6c8b1bd6aa1442a5c4c09f9c1677da3735d7580c [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustdoc_internals
)]
#[
doc
(
search_unbox
)]
pub
struct
Object
<
T
,
U
>(
T
,
U
);
pub
fn
something
()
->
Result
<
Object
<
i32
,
u32
>,
bool
>
{
loop
{}
}